/*  
This JavaScript Will be used to: Display the current time based on users clock.
 
CREATED: created in house with no references
AUTHORS: Brad Godfrey 
 LAST DATE MODIFIED: 4/23/03 
 
  */

//This function is built for displaying the date
function displayTime()
{
			<!--
			// Array of day names
			var dayNames = new Array("Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday");
			// Array of month Names
			var monthNames = new Array("Jan.","Feb.","March","April","May","June","July","Aug.","Sep.","Oct.","Nov.","Dec.");
			var now = new Date();
			document.write(dayNames[now.getDay()] + ", " + monthNames[now.getMonth()] + " " + now.getDate() + ", " + now.getFullYear());
			// -->
}
