// JavaScript Document

atoj = new Date()
atoj1= atoj.getHours()
atoj2 = atoj.getMinutes()
atoj3= atoj.getSeconds()

if(atoj1==0){atoj4=" AM";atoj1=12}
else if(atoj1 <= 11){atoj4=" AM"}
else if(atoj1 == 12){atoj4=" PM";atoj1=12}
else if(atoj1 >= 13){atoj4=" PM";atoj1-=12}

if(atoj2 <= 9){atoj2="0"+atoj2}
document.write("<font style='font-size:14px'>- "+atoj1+":"+atoj2+" "+atoj4+" "+"</font>")
