
function Fensterweite()
{
 if (window.innerWidth) return window.innerWidth;
 else if (document.body && document.body.offsetWidth) return document.body.offsetWidth-5;
 else return 0;
}

function Fensterhoehe()
{
 if (window.innerHeight) return window.innerHeight;
 else if (document.body && document.body.offsetHeight) return document.body.offsetHeight;
 else return 0;
}


function neuAufbau()
{
	m = eval(document.getElementById("main"));
	h = eval(document.getElementById("hintergrund")); 
 	if (Fensterweite()<700||Fensterhoehe()<500){
		m.style.width = "100%";
 		m.style.height = "100%";
		m.style.margin = "0px";
		m.style.left = "0px";
		m.style.top = "0px";
		h.style.backgroundColor = "white";
		h.style.overflow = "auto";
 	}else{
		m.style.width = "700px";
 		m.style.height = "500px";
		m.style.margin = "-250px 0px 0px -350px";
		m.style.left = "50%";
		m.style.top = "50%";
		h.style.backgroundColor = "WhiteSmoke";
		h.style.overflow = "hidden";
		
		
	}
}
function neuLaden()
{
   neuAufbau();
   Weite = Fensterweite();
   Hoehe = Fensterhoehe();
}

/*Überwachung von Netscape initialisieren*/
if(!window.Weite && window.innerWidth)
  {

   window.onresize = neuAufbau;
   Weite = Fensterweite();
   Hoehe = Fensterhoehe();
  }

/*Überwachung von MS Internet Explorer initialisieren*/
 if(!window.Weite && document.body && document.body.offsetWidth)
  {
   window.onresize = neuAufbau;
   Weite = Fensterweite();
   Hoehe = Fensterhoehe();
  }


