// Sets the Date in the copyright section.
var year = new Date();
var CurrentYear = year.getYear()
   	 if (CurrentYear < 1000)
	 CurrentYear+=1900
	 document.write(CurrentYear);
