function layout() {

	var inhalth = document.getElementById('inhalt').offsetHeight;
	var bodyh = document.getElementsByTagName("body")[0].offsetHeight;
	var maxh = 0;	
	maxh = bodyh;	
	if (inhalth > maxh){
		maxh = inhalth;
	}
	//alert(maxh);
	document.getElementById('inhalt').style.height = maxh + "px";
}

function MM_openBrWindow(theURL,winName,features) {
	window.open(theURL,winName,features);
}
