//
// Fill in startyear ONLY with the 4-digit year the copyright started
//
startyear = 2000;
//
// No more editing needed
//
now = new Date();
year = now.getYear();
if (year < 2000) {year = year + 1900;}	
if (year > startyear) {
document.write(startyear + "-" + year)}
if (year == startyear) {
document.write(startyear)}

