<!--

// STOPCLOCK
function stopclock (){
  if(timerRunning) clearTimeout(timerID);
  timerRunning = false;
}

// SHOWTIME
function showtime () {
  var now = new Date(); 
  // document.clock.face2.value = now.toLocaleString() ;
  var my = now.getTime() ;
  //now = new Date(my-diffms) ;
  now = new Date(my) ;

// The REGULAR CLOCK
  document.getElementById('face').innerHTML = now.toLocaleString();

  timerID = setTimeout('showtime()',1000);
  timerRunning = true;
}

function startclock () {
  stopclock();
  showtime();
  
}
var timerID = null;
var timerRunning = false;


-->