function fixheight() {

  var fensterhoehe;
  var fensterbreite;
  var neuebreite;
  var t0;
  
  // Hoehe des Anzeigebereiches im Browserfenster ermitleln
   if (self.innerHeight) // alle außer Explorer
  {
   fensterhoehe = self.innerHeight;
  }
  else if (document.documentElement && document.documentElement.clientHeight)
   // Explorer 6 Strict Mode
  {
   fensterhoehe = document.documentElement.clientHeight;
  }
  else if (document.body) // andere Explorer
  {
   fensterhoehe = document.body.clientHeight;
  }
  //Breite des Anzeigebereiches im Browserfenster ermitleln
    if (self.innerWidth) // alle außer Explorer
  {
   fensterbreite = self.innerWidth;
  }
  else if (document.documentElement && document.documentElement.innerWidth)
   // Explorer 6 Strict Mode
  {
	fensterbreite = document.documentElement.innerWidth;
  }
	else if (document.body) // andere Explorer
  {
	fensterbreite = document.body.innerWidth;
  }
 
	// Breite auf ungerade geprüft
	if( fensterbreite%2 == 1 ) {
		neuebreite = fensterbreite - 1;
	//	document.getElementByName('body').width = neuebreite;
	}


  var obj = document.getElementById("content_bottom")

  t0 = fensterhoehe-312; // an die Elementgröße anpassen
  if (navigator.appName == "Microsoft Internet Explorer") {
	t0 = fensterhoehe-332; // an die Elementgröße anpassen
	var DivHeight = document.getElementById('content_left').clientHeight;
	if (DivHeight < fensterhoehe) {
		document.getElementById('content_left').style.height=t0+"px";
	}
  } else {
    document.getElementById('content_bottom').style.minHeight=t0+"px";
    document.getElementById('content_bottom').style.height="auto";
  }
}
