<!--
// Script to display current year

var the_day=new Date();				

var the_year=the_day.getFullYear();

var the_daysdate = the_year;

document.write(the_daysdate);
// End -->