
function getCurrentYear() {
today= new Date();
year=today.getFullYear();
return year;
}

