// ***********************************************************
//      Current Date script. Should work in all browsers.
//          Gjermund Marqvardsen - February 2001
//            http://sylfest.hiof.no/~gjermujm/
// ***********************************************************

<!--

	var a;
	a=new Date();
	cd_year=a.getYear();
	if (cd_year<1000){ 				//Just in case the date is delivered with 4 digits
		if (cd_year<70){
		cd_year=2000+cd_year;
		}
		else cd_year=1900+cd_year;
	}								//End workaround
	cd_month=a.getMonth()+1;
	if (cd_month<10){
		cd_month='0'+cd_month;
	}
	cd_day=a.getDate();
	if (cd_day<10){
		cd_day='0'+cd_day;
	}
	monthName = new Array(12)
	monthName[0] = 'Januar'
	monthName[1] = 'Februar'
	monthName[2] = 'Mars'
	monthName[3] = 'April'
	monthName[4] = 'Mai'
	monthName[5] = 'Juni'
	monthName[6] = 'July'
	monthName[7] = 'August'
	monthName[8] = 'September'
	monthName[9] = 'Oktober'
	monthName[10] = 'November'
	monthName[11] = 'Desember'
	document.write("" + cd_day+'. '+ monthName[cd_month-1]+' '+cd_year+"");
	
// -->