<!--
brow=navigator.appName;
vers=navigator.appVersion;
// Month
mNames = new Array("January","February","March","April","May","June","July","August","September","October","November","December")
// Day
dNames=new Array("Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday")
var now = new Date();
var s
// Browser
if(brow.indexOf('Microsoft') >=0 && vers.indexOf('4.0') >=0)
//IE
{
year = now.getYear();
if (year<1900)
s = dNames[now.getDay()]+", " + mNames[now.getMonth()] + " " + now.getDate() + " 19" + now.getYear();
else
s = dNames[now.getDay()]+", " + mNames[now.getMonth()] + " " + now.getDate() + " " + now.getYear();
document.write("<font color=#FFFFFF>");
document.write(s);
document.write("</font>");
}
//NN
else
{
// - gives year=='3902' in NN4.04 in 2002
// s = dNames[now.getDay()]+", " + mNames[now.getMonth()] + " " + now.getDate() + " " + (1900 + now.getYear());

year = now.getYear();  // it may be (YEAR-1900) or YEAR itself
if (year < 1900){
s = dNames[now.getDay()]+ ", " +mNames[now.getMonth()] + " " + now.getDate() + " " + (1900 + now.getYear());
}else{
s = dNames[now.getDay()]+ ", " + mNames[now.getMonth()] + " " + now.getDate() + " " + (0 + now.getYear());
}
document.write("<font color=#FFFFFF>");
document.write(s);
document.write("</font>");
}
// -->

