function WinMax() {
if (window.screen){
	var aw = screen.availWidth;
	var ah = screen.availHeight;
	
	if(aw<"1024" && ah<"768"){
	alert("Achtung!" + '\n' + "Bitte ändern Sie Ihre Bildschirmauflösung auf 1024x768Pixel!");
	}
	else{
	window.moveTo(0,0);
	window.resizeTo(aw,ah);
	}
}
}
