function makeDate() {
	var date = new Date();
	var month = (date.getMonth()+1);
	var year = date.getYear();
	var day = date.getDate();

	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';

	if (day==0)
	day = day+'error';
	
	if ((year>=0) &&(year<=1900))
	year=year+1900; 

	var mydate = day+". "+month+" "+year;
	return mydate;
	}

function makeYear() {
	var date = new Date();
	var year = date.getYear();
	if ((year>=0) &&(year<=1900))
	year=year+1900; 
	var todayyear = year;
	return todayyear;
	}

function Start(URL, WIDTH, HEIGHT) {
	windowprops = "left=40,top=40,width=" + WIDTH +",height=" + HEIGHT + ",scrollbars=yes";
	preview = window.open(URL, "preview", windowprops);
	}

