// TIME.JS - scrolls time on status line to the left

  document.write("<h1><center>World Time</center></h1>\n\n");
  now = new Date();
  localtime = now.toString();
  utctime = now.toGMTString();

  document.write("<br><br><h3>The local time is:  " + localtime + "</h3><br>");
  document.write("<h3>The UTC time is:  <font color=#0000ff>" + utctime + "</font></h3><br>");

  hours = now.getHours();
  mins  = now.getMinutes();
  secs  = now.getSeconds();

  document.write("<center>");
  document.write("<br><br><font size='+5' color=#00ff55>" + hours + ":" + mins + ":" + secs + "</font><br>");
  document.write("</center>");
  document.write("<font>");
  document.write("</font>");
