function setupWindows(param) {
	var topContHeight = document.getElementById("topCont").offsetHeight;
	var topCont3Height = document.getElementById("topCont03R").offsetHeight;
	var bottomContHeight = document.getElementById("bottomCont").offsetHeight;
	var mainContHeight = (topContHeight + bottomContHeight) - 146;
	
	if(!window.innerHeight) {
		var clientHeight = (document.documentElement.clientHeight - 29);
	} else {
		var clientHeight = window.innerHeight;
	}
//	alert(clientHeight+' '+mainContHeight);
		
	if (clientHeight > mainContHeight) {
		document.getElementById('topCont03R').style.height = (topCont3Height + (clientHeight - mainContHeight) + 135) + 'px';
		document.getElementById('mainCont').style.height = (clientHeight) + 'px';
	} else {
		if (param == 'kontakt') {
			document.getElementById('topCont03R').style.height = (topCont3Height + (mainContHeight - clientHeight) -100) + 'px';	
		}
		document.getElementById('mainCont').style.height = (mainContHeight)+ 'px';		
	}
	
	if (navigator.appName == "Netscape") {
		document.getElementById('bottomCont').style.zIndex = "-1";
	}
	
}
