// JavaScript Document

function getTodaysDate() {
	var isnMonths = ["January","February","March","April","May","June","July","August","September","October","November","December"];
	var isnDays = ["Sunday", "Monday","Tuesday","Wednesday","Thursday","Friday","Saturday"];
	
	today = new Date();
	
	return (isnDays[today.getDay()] + " " + isnMonths[today.getMonth()] + " " + today.getDate() + " " + today.getFullYear());

	
/*
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   
*/
}

function isnArray() {
	argnr=isnArray.arguments.length
	for (var i=0;i<argnr;i++) {
		this[i] = isnArray.arguments[i];

	}

}