function runClock() {
  theTime = window.setTimeout("runClock()", 1000);
  var today = new Date();
  var display= today.toLocaleString();
  status="        " + display;
}

