   wday =
   new Array("Sonntag","Montag","Dienstag","Mittwoch","Donnerstag","Freitag","Samstag");
  function date_show()
  {
   var now = new Date();
   var day = now.getDate();
   var month = now.getMonth() + 1;
   var year = now.getYear();
   var hours = now.getHours();
   var minutes = now.getMinutes();
   var seconds = now.getSeconds();
   var weday = now.getDay();
   var bday  = ((day < 10) ? "0" : "");
   var bmon  = ((month < 10) ? ".0" : ".");
   var bhours  = ((hours < 10) ? "0" : "");
   var bmin  = ((minutes < 10) ? ":0" : ":");
   var bsec  = ((seconds < 10) ? ":0" : ":");
   var date1 = bday + day + bmon + month  + "." + year;
   var date2 = bhours + hours + bmin + minutes + bsec + seconds;
   var dateall = wday[weday] + "," + "&nbsp;" + date1 + "<br>" + date2;
if(document.all)
document.all.MicrosoftUhr.innerHTML = dateall;
   else if(document.layers)
    {
     document.NetscapeUhr.document.open();
     Gesamt = '<span class="Uhr")>' + dateall + '</span>';
     document.NetscapeUhr.document.write(Gesamt);
     document.NetscapeUhr.document.close();
    }

  window.setTimeout("date_show()",1000);


  }