// JavaScript Document
<!-- Begin
now = new Date();
thisYear = now.getYear();
if(thisYear < 1900) {thisYear += 1900};
document.write(thisYear);
// -->