var breite, hoehe, contentcontainer_index_hohe, contentcontainer_hohe, nav_container_hoehe, content_frame_hohe, content_hohe;

if( typeof( window.innerWidth ) == 'number' ) {
	//Non-IE
	breite = window.innerWidth;
	hoehe = window.innerHeight;
} else if( document.documentElement &&  document.documentElement.clientWidth ) {
	//IE 6+ in 'standards compliant mode'
	breite = document.documentElement.clientWidth;
	hoehe = document.documentElement.clientHeight;
} else if( document.body && document.body.clientWidth ) {
	//IE 4 compatible
	breite = document.body.clientWidth;
	hoehe = document.body.clientHeight;
}

contentcontainer_index_hohe = hoehe - 133 - 43;
contentcontainer_hohe = hoehe - 133 - 43;
nav_container_hoehe = hoehe - 133 - 43 - 18;

if( contentcontainer_index_hohe > 436){
   contentcontainer_index_hohe = 436;
}

if( contentcontainer_hohe > 434){
   contentcontainer_hohe = 434;
}

if( nav_container_hoehe > 416){
   nav_container_hoehe = 416;
}

content_frame_hohe = nav_container_hoehe;
content_hohe = content_frame_hohe;
