<!--
window.onload = time;
function time() {
  now=new Date();
  hour=now.getHours();
  min=now.getMinutes();
  sec=now.getSeconds();

  if (min<=9) { min="0"+min; }
  if (sec<=9) { sec="0"+sec; }
  hour = -6 + hour;
  
  if (hour<0) { hour = hour + 24;}
  if (hour<10) { hour="0"+hour; }

  document.hours.clock.value = hour;
  document.minutes.clock.value = min;
  document.seconds.clock.value = sec;

  setTimeout("time()", 1000);
}

-->
