﻿tday="Sunday,Monday,Tuesday,Wednesday,Thursday,Friday,Saturday".split(",");tmonth="January,February,March,April,May,June,July,August,September,October,November,December".split(","); function GetClock(){d=new Date;nday=d.getDay();nmonth=d.getMonth();ndate=d.getDate();nyear=d.getYear();nhour=d.getHours();nmin=d.getMinutes();nyear<1E3&&(nyear+=1900);nhour==0?(ap=" AM",nhour=12):nhour<=11?ap=" AM":nhour==12?ap=" PM":nhour>=13&&(ap=" PM",nhour-=12);nmin<=9&&(nmin="0"+nmin);document.getElementById("clockbox").innerHTML=""+tday[nday]+", "+tmonth[nmonth]+" "+ndate+", "+nyear+" "+nhour+":"+nmin+ap+"";setTimeout("GetClock()",1E3)}window.onload=GetClock;
