function MachsNeu(Neu)
	{  
  if (Neu==true) with (navigator)
	 {
	 	if ((appName=="Netscape")&&(parseInt(appVersion)==4))
		 {
    		weite=innerWidth; 
			hoehe=innerHeight;
			onresize=MachsNeu; 
		 }
	 }
  		else if (innerWidth!=weite || innerHeight!=hoehe)
			location.reload();
	}
	MachsNeu(true);
