<!-- 
function timestamp()
{
now=new Date(); h = now.getHours(); mt = now.getMinutes();
s = now.getSeconds(); m = now.getMonth(); d = now.getDate();
year = now.getYear(); w = now.getDay();

if(h == 0){h = 24}
if(h < 12){ampm = "a.m."}
else if(h == 12){ampm = "p.m."}
else if(h > 12){h = h-12; ampm = "p.m."}
if(mt < 10){mt = "0"+mt}
if(s < 10) {s = "0"+s}

if(year < 2000){year += 1900}  

day = new Array(); day[0]="Sunday"; day[1]="Monday"; day[2]="Tuesday";
day[3]="Wednesday"; day[4]="Thursday"; day[5]="Friday"; day[6]="Saturday";

mon = new Array; mon[0]="January"; mon[1]="February"; mon[2]="March";
mon[3]="April"; mon[4]="May"; mon[5]="June"; mon[6]="July"; mon[7]="August";
mon[8]="September"; mon[9]="October"; mon[10]="November"; mon[11]="December";

window.status=day[w]+"  "+mon[m]+" "+d+", "+year+" --- "+h+":"+mt+"."+s+" "+ampm;

setTimeout("timestamp()",1000);
}
// -->