<!--
// Get the date
today=new Date();

// Create the array
function isnArray() {
	argnr=isnArray.arguments.length
	for (var i=0;i<argnr;i++) {
		this[i+1] = isnArray.arguments[i];
	}
}

// Months and days in the array
var isnMonths=new isnArray("January","February","March","April","May","June","July","August","September","October","November","December");
var isnDays= new isnArray("Monday","Tuesday","Wednesday","Thursday","Friday","Saturday","Sunday");
var isnNumber= new isnArray("1st","2nd","3rd","4th","5th","6th","7th","8th","9th","10th","11th","12th","13th","14th","15th","16th","17th","18th","19th","20th","21st","22nd","23rd","24th","25th","26th","27th","28th","29th","30th","31st");
isnDays[0]="Sunday";

function MM_displayStatusMsg(msgStr) { //v1.0
  status=msgStr;
  document.MM_returnValue = true;
}

var thisyear = today.getYear(); // modified depending on JScript or Javascript
 
document.write(isnDays[today.getDay()]+" "+isnMonths[today.getMonth()+1]+" "+isnNumber[today.getDate()]+", ")

if (thisyear >= 2000) { // make sure Javascript is Y2K compliant
	document.write(thisyear);
	}
else { // make sure JScript from 1900 to 1999 and JavaScript to 3899
	document.write(1900 + thisyear);
	} // will not work with JScript before 1900

// End -->
