MyStart = 2007;

MyYear = new Date().getYear();
MyYear = (MyYear < 2000) ? MyYear + 1900 : MyYear;

document.write("Copyright &copy; " + MyStart + " ");

if( MyYear > MyStart )
{   document.write("- " + MyYear + " ");	};

document.write(" APLO. All Rights Reserved.");

