<!--
function dayandtime(){
if (!document.all&&!document.getElementById)
return
thelement=document.getElementById? document.getElementById("liveClock"): document.all.tick2
var myDays=["Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday","Sunday"]
var myTime=new Date()
var day=myTime.getDay()
var thisDay=myDays[day]
var hours=myTime.getHours()
var minutes=myTime.getMinutes()
var seconds=myTime.getSeconds()
var dn="PM"

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";
var time=new Date();
var lmonth=months[time.getMonth() + 1];
var date=time.getDate();
var year=time.getYear();

if (hours<12)
dn="AM"
if (hours>12)
hours=hours-12
if (hours==0)
hours=12
if (minutes<=9)
minutes="0"+minutes
if (seconds<=9)
seconds="0"+seconds
var ctime=lmonth+" "+date+" "+hours+":"+minutes+":"+seconds+" "+dn
thelement.innerHTML=ctime
setTimeout("dayandtime()",1000)
}
window.onload=dayandtime
//-->