function CurrentYear() {
oDate = new Date();
var theYear = oDate.getYear()+years;
document.write(theYear);
}