<!--

/* RESIZE FUNCTION ONLOAD/ONRESIZE */

function resize_page(bereich) {
	
	/* POSITIONING FOOTER */
	
		var body_height = document.body.clientHeight;
		
		var div_footer = get_id('bottom-footer');
		var div_nav = get_id('outer-nav');
		var div_nav_bottom = get_id('outer-nav-bottom');
		
		var div_cont = get_id('outer-content-area');
		
		var div_contentheight = get_id('content-height');
		var div_contentright = get_id('content-right');
		
		var nav_height = div_nav.offsetHeight + 100;
		if(!ie) {
			var cont_height = div_cont.offsetHeight + 392;
		} else {
			if(div_contentright != null) {
				var cont_height = Math.max(div_contentheight.offsetHeight, div_contentright.offsetHeight);
			} else {
				var cont_height = Math.max(div_contentheight.offsetHeight);
			}
			
			cont_height += 552;
			if(ie7) cont_height -= 100;
			if(ie8) cont_height += 50;
			if(ie9) cont_height += 50;
		}
		
		var max_height = Math.max(body_height, nav_height, cont_height);
		//document.title = nav_height+" "+cont_height;
	
		div_footer.style.top = "" + (max_height - 90) + "px";
		div_footer.style.display = "block";
		
		if(bereich == 1) {
			var subtract = 545;
		} else {
			var subtract = 462;
		}
		
		var nav_height_bg = div_nav.offsetHeight - subtract;	
		div_nav_bottom.style.height = nav_height_bg + "px";
		div_nav_bottom.style.top = subtract + "px";
}

//-->
