//<!--
/*By JavaScript Kit
http://javascriptkit.com
Credit MUST stay intact for use

Modified by D.Archibald
*/
function show2(){
if (!document.all&&!document.getElementById)
return
thelement=document.getElementById? document.getElementById("tick2"): document.all.tick2
var months = new Array(13);
months[0] = "Jan";
months[1] = "Feb";
months[2] = "Mar";
months[3] = "Apr";
months[4] = "May";
months[5] = "Jun";
months[6] = "Jul";
months[7] = "Aug";
months[8] = "Sep";
months[9] = "Oct";
months[10] = "Nov";
months[11] = "Dec";
var Digital=new Date()
var hours=Digital.getHours()
var minutes=Digital.getMinutes()
//var seconds=Digital.getSeconds()
var dn="PM"
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 monthnumber = Digital.getMonth();
var monthname = months[monthnumber];
var monthday = Digital.getDate();
var year = Digital.getYear();
if(year < 2000) { year = year + 1900; }
var dateString = monthday + ' ' + monthname + " " + year;

//var ctime = dateString + " " + hours+":"+minutes+":"+seconds+" "+dn
var ctime = dateString + " " + hours+":"+minutes+" "+dn
thelement.innerHTML=ctime
setTimeout("show2()",1000)
}
window.onload=show2
//-->
