<!--
function Watch() {
  now = new Date();
  year = now.getYear();
  month = now.getMonth();
  var mon='January,February,March,April,May,June,July,August,September,October,November,December';
  day = now.getDate();
  hour = now.getHours();
  minute = now.getMinutes();
  second = now.getSeconds();
  if (year < 1000) { year += 1900 }
  if (day < 10) { day = '0' + day }
  if (hour < 10) { hour = '0' + hour }
  if (minute < 10) { minute = '0' + minute }
  if (second < 10) { second = '0' + second }  
  document.form.watch.value = mon.split(',')[month] + ' ' + day + ', ' + year+'  ' + hour + ':' + minute + ':' + second + '  Japan time';
  setTimeout("Watch()",1000);
}
document.write('<FORM name=form><INPUT name=watch size=45></FORM>');
Watch();
//-->
