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