// JavaScript Document
	function setDateTime()
	{
	<!-- This script and many more are available free online at -->
			<!-- The JavaScript Source!! http://javascript.internet.com -->
			
			<!-- Begin
				var strDateTime='';
				
				var months=new Array(13);
				months[1]="January";
				months[2]="February";
				months[3]="March";
				months[4]="April";
				months[5]="May";
				months[6]="June";
				months[7]="July";
				months[8]="August";
				months[9]="September";
				months[10]="October";
				months[11]="November";
				months[12]="December";
				//Get Day name
				var weekday=new Array(7)
				weekday[0]="Sunday"
				weekday[1]="Monday"
				weekday[2]="Tuesday"
				weekday[3]="Wednesday"
				weekday[4]="Thursday"
				weekday[5]="Friday"
				weekday[6]="Saturday"
				
				var time=new Date();
				var lmonth=months[time.getMonth() + 1];
				var monthNum = time.getMonth() + 1;
				var dname = weekday[time.getDay()];				
				var date=time.getDate();
				var year=time.getYear();
				if (year < 2000)    // Y2K Fix, Isaac Powell
				year = year + 1900; // http://onyx.idbsu.edu/~ipowell

				Stamp = new Date();

				var Hours;
				var Mins;
				var Time;
				Hours = Stamp.getHours();
				
				
				//strDateTime=strDateTime + lmonth + " ";
				//strDateTime=strDateTime + date + ", " + year;
				
				//strDateTime = strDateTime + dname + "," + date + " " + lmonth + " " + year;
				//strDateTime = strDateTime + date+"/"+setMonthNum(monthNum)+"/"+year;
				strDateTime = strDateTime + setMonthNum(monthNum)+ "/" + date + "/" +year;
				
/*if (Hours >= 12) {
Time = " P.M.";
}
else {
Time = " A.M.";
}

if (Hours > 12) {
Hours -= 12;
}

if (Hours == 0) {
Hours = 12;
}
*/
Mins = Stamp.getMinutes();

if (Mins < 10) {
Mins = "0" + Mins;
}

//strDateTime=strDateTime + ' ' + Hours + ":" + Mins + ":" + Stamp.getSeconds() + Time + '';

//strDateTime =  Hours + " : " + Mins + " - " +  strDateTime

var ldid=document.getElementById("datetimelabel");
ldid.innerHTML=strDateTime

setTimeout("setDateTime();",1000)
//-->

				// End -->
	}
	
function setMonthNum(month)
{
	 if(month < 10)
	  return "0"+month;
	 else
	  return month;
}

