// Applied Information Technology
// Author: Artboy5884
// Email: artboy5884@yahoo.com, jbyrd2@gmu.edu
// Website: www.artboy5884.8k.com
// Purpose of program: To print today's date


//Begin date program. 
function showDate () {
	var dayNames = new Array("Sunday","Monday","Tuesday","Wednesday",
				"Thursday","Friday","Saturday");

	var monthNames = new Array("January","February","March","April","May","June","July",
				"August","September","October","November","December");
	//Get Date from client
	var now = new Date();
	
	//output date
	document.write(dayNames[now.getDay()] + ", " + monthNames[now.getMonth()] + " " + 
	now.getDate() + ", " + now.getFullYear());
}
//End of date program