// JavaScript Document
/* This script is for the Day and Date Function*/

function WhatsTheDate() {
    // Array ofmonth Names
	var monthNames = new Array( "January","February","March","April","May","June","July","August","September","October","November","December");
	var weekdayNames = new Array( "Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday");
	var now = new Date();

	thisYear = now.getYear();
	if(thisYear < 1900) {thisYear += 1900}; // corrections if Y2K display problem
	document.write(weekdayNames[now.getDay()] + ", " + monthNames[now.getMonth()] + " " + now.getDate() + ", " + thisYear);
}






