var today = new Date();
var thisYear = today.getYear();
if (thisYear > 99) {
thisYear = thisYear + ""
yearLen = thisYear.length
thisYear = "20" + thisYear.substring(yearLen - 2, yearLen)
}
else {
thisYear = thisYear + ""
yearLen = thisYear.length
thisYear = "19" + thisYear.substring(yearLen - 2, yearLen)
}
document.write(thisYear + ",")
