<!--
function startclock(){
  var thetime=new Date();
  var nmonth=thetime.getMonth();
  var ndays=thetime.getDate();
  var nday=thetime.getDay();
  var nyear=thetime.getFullYear();
  var nhours=thetime.getHours();
  var nmins=thetime.getMinutes();
  var nsecn=thetime.getSeconds();
  var AorP=" ";
  
{
 d = new Date();
 Time24H = new Date();
 Time24H.setTime(d.getTime() + (d.getTimezoneOffset()*60000) + 3600000);
 InternetTime = Math.round((Time24H.getHours()*60+Time24H.getMinutes()) / 1.44);
 if (InternetTime < 10) InternetTime = '00'+InternetTime;
 else if (InternetTime < 100) InternetTime = '0'+InternetTime;
}

  if (nhours>=12) AorP="PM"; else AorP="AM";

  if (nhours>=13) nhours-=12;

  if (nhours==0) nhours=12;

  if (nsecn<10) nsecn="0"+nsecn;

  if (nmins<10) nmins="0"+nmins;
  var month=["JANUARY","FEBRUARY","MARCH","APRIL","MAY","JUNE","JULY","AUGUST","SEPTEMBER","OCTOBER","NOVEMBER","DECEMBER"];
  var days = ["SUN","MON","TUE","WED","THU","FRI","SAT"];  
  document.forms[0][0].value=nhours+":"+nmins+":"+nsecn+" "+AorP+" || "+days[nday]+" "+ndays+" "+month[nmonth]+" "+nyear+" || @"+InternetTime ;;
  setTimeout('startclock()',1000);
} 
//-->
onload=startclock;