function fenster()
 {
   var Hoehe;
   var Breite;
   
   Hoehe=screen.height;
   Breite=screen.width;
      
   if (Hoehe<768 | Breite<1024)
   {
document.getElementById("gesamt-container").style.width="992";
document.getElementById("gesamt-container").style.height="550";
document.getElementById("gesamt-container").style.margin="0px";
document.getElementById("gesamt-container").style.top="0";
document.getElementById("gesamt-container").style.left="0";
document.getElementById("gesamt-container").style.padding="10px";
   }
    
 }
