        var months=new Array(13);
        months[1]="Januar";
        months[2]="Februar";
        months[3]="M&auml;rz";
        months[4]="April";
        months[5]="Mai";
        months[6]="Juni";
        months[7]="Juli";
        months[8]="August";
        months[9]="September";
        months[10]="Oktober";
        months[11]="November";
        months[12]="Dezember";
        var time=new Date();
        var lmonth=months[time.getMonth() + 1];
        var date=time.getDate();
        var year=time.getYear();
           if (year < 2000)    // Y2K Fix, Isaac Powell
               year = year + 1900; // http://onyx.idbsu.edu/~ipowell
              document.write("<left><FONT FACE=ARIAL SIZE=1 color=#0000ff><B>" + date + "</B></FONT> ");
              document.write("<FONT FACE=ARIAL SIZE=1 color=#0000ff><B>" + lmonth + " " + year + "</B></FONT></left>");
