
  var timerID = null
  var timerRunning = false
  function MakeArray(size)
  {
  this.length = size;
  for(var i = 1; i <= size; i++)
  {
  this[i] = "";
  }
  return this;
  }
  function stopclock (){
  if(timerRunning)
  clearTimeout(timerID);
  timerRunning = false
  }
  function showtime () {
  var now = new Date();
  var year = now.getFullYear();
  var month = now.getMonth() + 1;
  var date = now.getDate();
  var hours = now.getHours();
  var minutes = now.getMinutes();
  var seconds = now.getSeconds();
  var day = now.getDay();
  Month = new MakeArray(12);
  Month[0]="Jan";
  Month[1]="Feb";
  Month[2]="Mar";
  Month[3]="Apr";
  Month[4]="Mai";
  Month[5]="Jun";
  Month[6]="Jul";
  Month[7]="Aug";
  Month[8]="Sep";
  Month[9]="Okt";
  Month[10]="Nov";
  Month[11]="Dez";
  var timeValue = "";
  timeValue += Month[month-1] + " ";
  timeValue += date + ", ";
  timeValue += year + " | ";
  timeValue += ((hours <= 12) ? hours : hours);
  timeValue += ((minutes < 10) ? ":0" : ":") + minutes;
  timeValue += ((seconds < 10) ? ":0" : ":") + seconds;
  document.jsfrm.face.value = timeValue;
  timerID = setTimeout("showtime()",1000);
  timerRunning = true
  }
  function startclock () {
  stopclock();
  showtime();
  }