
    function displayDate(){
      var this_month = new Array(12);
      this_month[0]  = "Januar";
      this_month[1]  = "Februar";
      this_month[2]  = "M&auml;rz";
      this_month[3]  = "April";
      this_month[4]  = "Mai";
      this_month[5]  = "Juni";
      this_month[6]  = "Juli";
      this_month[7]  = "August";
      this_month[8]  = "September";
      this_month[9]  = "Oktober";
      this_month[10] = "November";
      this_month[11] = "Dezember";
      var today = new Date();
      var day   = today.getDate();
      var month = today.getMonth();
      var year  = today.getYear();
      if (year < 1900){
         year += 1900;
      }
      return(day+". "+this_month[month]+" " +year);
    }
