//Date Function
monat = new Array(12);
monat[0]="Jan.";
monat[1]="Feb.";
monat[2]="Mar.";
monat[3]="Apr.";
monat[4]="Mai";
monat[5]="Jun.";
monat[6]="Jul.";
monat[7]="Aug.";
monat[8]="Sept.";
monat[9]="Okt.";
monat[10]="Nov.";
monat[11]="Dec.";

today = new Date();
date = today.getDate() + ". " + monat[today.getMonth()] + " " + today.getFullYear();


