// dynamische Höhe des Content-Fenster

function reload_window () {
	if (width != windowWidth() || height != windowHeight())
		location.href = location.href;
}

/* Überwachung von Netscape initialisieren */
if (!window.width && window.innerWidth) {
	window.onresize = reload_window();
	width = windowWidth();
	height = windowHight();
}

function set_height() {
	var height = document.body.clientHeight;
	height = height - 150;
	document.getElementById('content').style.height = height-40 + "px";
	document.getElementById('shadow_left').style.height = height + "px";
	document.getElementById('shadow_right').style.height = height + "px";
	document.getElementById('inner_common').style.height = height + "px";
	document.getElementById('menu').style.height = height + "px";
}	

