// Datumsangabe ohne Wochentag
var now = new Date();
var yr = now.getYear();
 if ( yr< 2000)  yr+=1900
var mName = now.getMonth() + 1;
var dName = now.getDay() + 1;
var dayNr = ((now.getDate()<10) ? "0" : "")+ now.getDate();
//if(mName==1) Month="Januar";
//if(mName==2) Month="Februar";
//if(mName==3) Month="März";
//if(mName==4) Month="April";
//if(mName==5) Month="Mai";
//if(mName==6) Month="Juni";
//if(mName==7) Month="Juli";
//if(mName==8) Month="August";
//if(mName==9) Month="September";
//if(mName==10) Month="Oktober";
//if(mName==11) Month="November";
//if(mName==12) Month="Dezember";
if(mName==1) Month="01";
if(mName==2) Month="02";
if(mName==3) Month="03";
if(mName==4) Month="04";
if(mName==5) Month="05";
if(mName==6) Month="06";
if(mName==7) Month="07";
if(mName==8) Month="08";
if(mName==9) Month="09";
if(mName==10) Month="10";
if(mName==11) Month="11";
if(mName==12) Month="12";
// String to display current date.
var todaysDate =(" "
//    + Day
//    + " "
      + dayNr
      + "."
      + " "
      + Month
      + " "
      + yr
      + "<BR>");
// Write date to page.
document.open();
document.write("<font class=copyright>"+todaysDate+"</font>");

