// 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";
// 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>");

