
<!-- Uhr- und Datums-Anzeige
  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.getYear() - 100;
  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();
  Day = new MakeArray(7);
  Day[0]="Sonntag";
  Day[1]="Montag";
  Day[2]="Dienstag";
  Day[3]="Mittwoch";
  Day[4]="Donnerstag";
  Day[5]="Freitag";
  Day[6]="Samstag";
  var timeValue = "";
  timeValue += (Day[day]) + "   ";
  // DE-Version TT/MM/JJ
  timeValue += ((date < 10) ? "0" : "") + date + "-";
  timeValue += ((month < 10) ? "0" : "") + month + "-";
  timeValue += + "20" +((year < 10) ? "0" : "") + year + "   ";
  
	//  timeValue += ((month > 10) ? " 0" : " ") + month + "-"; (US-Version MM/TT/JJ)
	//  timeValue += date + "-" + year + "    "; (US-Version MM/TT/JJ)
  timeValue += ((hours <= 24) ? hours : hours - 24);
  timeValue += ((minutes < 10) ? ":0" : ":") + minutes;
  timeValue += ((seconds < 10) ? ":0" : ":") + seconds;
  timeValue += (hours < 24) ? "" : "";
  document.jsfrm.face.value = timeValue;
  timerID = setTimeout("showtime()",1000);
  timerRunning = true
  }
  function startclock () {
  stopclock();
  showtime()
  }
// Ende verstecken -->

// Layer

<!--
function MM_findObj(n, d) { //v4.01
  var p,i,x;  if(!d) d=document; if((p=n.indexOf("?"))>0&&parent.frames.length) {
    d=parent.frames[n.substring(p+1)].document; n=n.substring(0,p);}
  if(!(x=d[n])&&d.all) x=d.all[n]; for (i=0;!x&&i<d.forms.length;i++) x=d.forms[i][n];
  for(i=0;!x&&d.layers&&i<d.layers.length;i++) x=MM_findObj(n,d.layers[i].document);
  if(!x && d.getElementById) x=d.getElementById(n); return x;
}

function MM_showHideLayers() { //v6.0
  var i,p,v,obj,args=MM_showHideLayers.arguments;
  for (i=0; i<(args.length-2); i+=3) if ((obj=MM_findObj(args[i]))!=null) { v=args[i+2];
    if (obj.style) { obj=obj.style; v=(v=='show')?'visible':(v=='hide')?'hidden':v; }
    obj.visibility=v; }
}
//-->

// Open-Browser-Window
<!--
function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}
//-->