function resizeMiddle() {
	
  var innerHeight = window.innerHeight || (window.document.documentElement.clientHeight || window.document.body.clientHeight);
  var newHeight = 0;
  if(innerHeight<730)
    newHeight = 414;
  else
    newHeight = innerHeight-316;
	browserVer = navigator.appVersion;
	
	var spruchele = document.getElementById("spruch");
	if(undefined!=spruchele)
	  spruchele.style.position = "absolute";
	
	if(browserVer.indexOf("MSIE 6.0") != -1)
	  document.getElementById('middle_bottom').style.height = newHeight + "px";
  else
	  document.getElementById('middle_bottom').style.minHeight = newHeight + "px";
} 

window.onload = resizeMiddle;
window.onresize = resizeMiddle;