  // Datum //
  
  
			var jahr, month, tag, dName;
			var AktuellesDatum = new Date();
			
			dName = AktuellesDatum.getDay() + 1; 
			jahr = AktuellesDatum.getFullYear();
			month = AktuellesDatum.getMonth ()+1;
			tag = AktuellesDatum.getDate();
			
			if(dName==1) dName = "Sonntag";
			if(dName==2) dName = "Montag";
		 	if(dName==3) dName = "Dienstag";
			if(dName==4) dName = "Mittwoch";
			if(dName==5) dName = "Donnerstag";
			if(dName==6) dName = "Freitag";
			if(dName==7) dName = "Samstag";
			if(month==1) month = "Januar";
			if(month==2) month = "Februar";
			if(month==3) month = "M&auml;rz";
			if(month==4) month = "April";
			if(month==5) month = "Mai";
			if(month==6) month = "Juni";
			if(month==7) month = "Juli";
			if(month==8) month = "August";
			if(month==9) month = "September";
			if(month==10) month = "Oktober";
			if(month==11) month = "November";
			if(month==12) month = "Dezember";
			document.write(dName + ", " + tag + "." + " " + month + " " + jahr);
