	function GetDay(nDay)
	{
		var Days = new Array("Sunday","Monday","Tuesday","Wednesday",
		                     "Thursday","Friday","Saturday");
		return Days[nDay]
	}
	
	function GetMonth(nMonth)
	{
		var Months = new Array("January","February","March","April","May","June",
		                       "July","August","September","October","November","December");
		return Months[nMonth] 	  	 
	}
	
	function DateString()
	{
		var Today = new Date();
		var strDate = GetDay(Today.getDay()) + ", " + GetMonth(Today.getMonth()) + " " + Today.getDate()  + ", " +  Today.getFullYear();
		return strDate
	}
	
	document.write(DateString());

	atoj = new Date();
	atoj1= atoj.getHours();
	atoj2 = atoj.getMinutes();
			
	if(atoj1==0){atoj4=" AM";atoj1=12}
	else if(atoj1 <= 11){atoj4=" am"}
	else if(atoj1 == 12){atoj4=" pm";atoj1=12}
	else if(atoj1 >= 13){atoj4=" pm";atoj1-=12}
	
	if(atoj2 <= 9){atoj2="0"+atoj2}
	document.write(" - "+atoj1+":"+atoj2+atoj4);