var year, today;
today = new Date();
year = today.getFullYear();
document.open();
document.write("2002-",year);
document.close();

