  // 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) monat="Januar";
			if(month==2) monat="Februar";
			if(month==3) monat="März";
			if(month==4) monat="April";
			if(month==5) monat="Mai";
			if(month==6) monat="Juni";
			if(month==7) monat="Juli";
			if(month==8) monat="August";
			if(month==9) monat="September";
			if(month==10) monat="Oktober";
			if(month==11) monat="November";
			if(month==12) monat="Dezember";
			document.write(dName + "," + " " + tag + "." + " " + monat + " " + jahr);// JavaScript Document
