function showClock() {
  var now=new Date();
  now.setUTCHours(now.getUTCHours()-10);
  var h=now.getUTCHours();
  var m=now.getUTCMinutes();
  var s=now.getUTCSeconds();
  m=timerFormat(m)
  s=timerFormat(s)
  var nowStr="";
  nowStr+=(now.getUTCMonth()+1)+"/";
  nowStr+=now.getUTCDate()+"/";
  nowStr+=now.getUTCFullYear();
  document.getElementById('disp').innerHTML="Honolulu" + " " +nowStr+ " " + h+":"+m+":"+s;
  timerID=setTimeout('showClock()',500);
}
function timerFormat(n) {
  if (n<10){ n="0"+n; }
  return n;
}
/* window.onload=showClock; */
