function copyRight(origDate)
{
	var now = new Date();
	var thisYear = now.getYear();
	var startDate = thisYear;
	if (thisYear < 1000)
	{
		thisYear += 1900;		
	}
	
	startDate = thisYear;
	if ((origDate) && (origDate.length == 4) && (origDate < thisYear))
	{
		startDate = origDate + "-" + thisYear;
	}
	document.write("&copy;" + startDate);
}