function PrintCopyRight()
{
document.write("&copy;");		
var today = new Date();
var y = today.getFullYear();
if (y > 2005)
	document.write("2005-");			
document.write(y);
}