// This document shows the current year 

todayobj = new Date();
year = todayobj.getFullYear();
function Today () {
var tdate =  year;
document.write(tdate);
}
Today();
