sDate = new Date();var weekDay = "";selectMonth = new Array(12);selectMonth[0] = "Jan"; selectMonth[1] = "Feb"; selectMonth[2] = "Mar"; selectMonth[3] = "Apr";selectMonth[4] = "May";	selectMonth[5] = "Jun"; selectMonth[6] = "Jul"; selectMonth[7] = "Aug"; selectMonth[8] = "Sep";selectMonth[9] = "Oct";	selectMonth[10] = "Nov"; selectMonth[11] = "Dec";if(sDate.getDay() == 1){ weekDay = "Mon"; }if(sDate.getDay() == 2){ weekDay = "Tue"; }if(sDate.getDay() == 3){ weekDay = "Wed"; }if(sDate.getDay() == 4){ weekDay = "Thu"; }if(sDate.getDay() == 5){ weekDay = "Fri"; }if(sDate.getDay() == 6){ weekDay = "Sat"; }if(sDate.getDay() == 7){ weekDay = "Sun"; }if(sDate.getDay() == 0){ weekDay = "Sun"; }var setYear = sDate.getYear();var BName = navigator.appName; if(BName == "Netscape"){		 var setYear = sDate.getYear() + 1900;}scMonth=sDate.getMonth()+1;scDate=scMonth+"/"+sDate.getDate()+"/"+setYear;function tick() {  var hours, minutes, seconds, ap;  var intHours, intMinutes, intSeconds;  var today;  today = new Date();  intHours = today.getHours();  RintHours = today.getHours();  intMinutes = today.getMinutes();  intSeconds = today.getSeconds();  switch(intHours){	   case 0:		   intHours = 12;		   hours = intHours+":";		   ap = " AM";		   break;	   case 12:		   hours = intHours+":";		   ap = " PM";		   break;	   case 24:		   intHours = 12;		   hours = intHours + ":";		   ap = " AM";		   break;	   default:    		   if (intHours > 12) {			 intHours = intHours - 12;			 hours = intHours + ":";			 ap = " PM";			 break;		   }		   if(intHours < 12) {			 hours = intHours + ":";			 ap = " AM";		   }	}         if (intMinutes < 10) {	 minutes = "0"+intMinutes;  } else {	 minutes = intMinutes;  }  if (intSeconds < 10) {	 seconds = "0"+intSeconds+" ";  } else {	 seconds = intSeconds+" ";  }   timeString = weekDay + ", " + selectMonth[sDate.getMonth()] + " " + sDate.getDate() + ", " + setYear+" "+hours+minutes+ap;  fullTimeString = RintHours+":"+minutes;  Clock.innerHTML = timeString;  window.setTimeout("tick();", 10000);}
