function divhight(obj) {
	
var fix		= 315;
var winmin	= 200;
var bh		= 25; 
var lr		= 28; 
var ov		="";
var vis		="";
	

if (window && window.innerWidth)  {
  //Netscape-----------------
    h=window.innerHeight;
   }
else if (document && document.body && document.body.offsetWidth){
   // IE----------------------
   h=document.body.offsetHeight;
  }

if (h < (fix + winmin)){ov = "visible",vis="hidden";} 
else if (h > fix ){ov = "auto";vis="visible"}

if (h < (fix + winmin)){ neuehoehe = winmin;} 
else if (h > fix + winmin){neuehoehe = h - fix;}

document.getElementById('content').style.overflow	= ov;
document.getElementById('content').style.height		= neuehoehe+"px";	 //hier wird der Wert überschrieben

// document.getElementById('navbottom').style.top 	= (fix+neuehoehe-bh)+"px";


 
if (h < (fix + winmin)){neuehoehe = 200;}
 
 
else if (h > fix){neuehoehe = h - fix;}

}

function reload(obj){location.reload();

}


function div(obj){;
var immke = document.all.contest.offsetHeight;
document.write(immke);
}


		       
		      