<!--
var theDate= new Date();
var year = theDate.getYear();
year = (year < 2000) ? year + 1900 : year;
document.write(year);
//-->