<!--script modified by KayPoe Nov, 2001--
var months = new Array("January","February","March","April","May","June","July","August","September","October","November","December");
var days = new Array("Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday");

var now = new Date(); 
var H = now.getHours(); 
var MI = now.getMinutes(); 
var S = now.getSeconds(); 
var Da = now.getDay(); 
var M = now.getMonth(); 
var D = now.getDate(); 
var Y = now.getFullYear(); 
var AM =" a.m.";
if(H>12){H=H-12;AM=" p.m."}if(H<10){H="0"+H;}if(MI<10){MI="0"+MI;}if(S<10){S="0"+S;}
var TO = H+":"+MI+":"+S+AM+"<br>on "+days[Da]+ ", "+months[M]+" "+D+", "+Y+".";
document.writeln("at "+TO+" ");
//-->
