function show2(){
if (!document.getElementById)
return
thelement=document.getElementById? document.getElementById("clock"): document.all.clock
var Digital=new Date()
var hours=Digital.getHours()
var minutes=Digital.getMinutes()
var dn="PM"
if (hours<12)
dn="AM"
if (hours>12)
hours=hours+0
if (hours==0)
hours=12
if (minutes<=9)
minutes="0"+minutes
var ctime=hours+":"+minutes
thelement.innerHTML=""+ctime+""
setTimeout("show2()",1000)
}
window.onload=show2
