// JavaScript Document
<!--
function clock(){
  h = H.getHours()
  m = H.getMinutes()
  s = H.getSeconds()
  d = H.getDate()
  mm = H.getMonth()
  y = H.getFullYear()
}

function mytime(){
  H2 = new Date(y,d,mm,h,m,s+1)
  h = H2.getHours(); h2 = h
  m = H2.getMinutes(); m2 = m
  s = H2.getSeconds();s2 = s
  if(s<10){s2 = "0" + s}
  if(m<10){m2 = "0" + m}
  if(h<10){h2 = "0" + h}
 	document.getElementById('clock').firstChild.nodeValue = h2 + ":" + m2;
 }
//-->

