<!--Hide JavaScript

var thisyear = today.getYear(); // varies in JavaScript and JScript
 
document.write(isnDays[today.getDay()]+", "+isnMonths[today.getMonth()+1]+" "+today.getDate()+", ")

if (thisyear >= 2000) { // covers JScript post 2000
	document.write(thisyear);
	}
else { // covers JScript from 1900 thru 1999 and JavaScript until 3899
	document.write(1900 + thisyear);
	} // not handled: JScript pre 1900

// End hiding of script -->