/* =================================================================*/
//
// JavaScript erstellt deutsches Datum-Format
// TT. MMMM JJJJ
//
/* =================================================================*/

/* =================================================*/
// 

// This script and many more are available free online at
// The JavaScript Source!! http://javascript.internet.com

// Begin
	function ChangeDat(dateObj){
		var days = new Array(8);
					days[1] = "Sonntag";
					days[2] = "Montag";
					days[3] = "Dienstag";
					days[4] = "Mittwoch";
					days[5] = "Donnerstag";
					days[6] = "Freitag";
					days[7] = "Samstag";
		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 dateObj = new Date(document.lastModified); */
		var wday = days[dateObj.getDay() + 1];
		var lmonth = months[dateObj.getMonth() + 1];
		var date = dateObj.getDate();
		var fyear = dateObj.getYear();
					if (fyear < 2000) ;
						if (navigator.appName == "Netscape") {
							fyear = fyear + 1900;
						}
						/*else fyear = fyear + 2000;
	
		/* var DtmSwissStyle = wday + ", " + date + ". " + lmonth + " " + fyear; => inkl. Wochentag (wday) */
		var DtmSwissStyle = date + ". " + lmonth + " " + fyear;
		return DtmSwissStyle;
	}
	
// End

