<!--
function anpassen() {
	var HeightIst = document.getElementById("main").offsetHeight;
	var HeightMin = 359;
	var HeightSoll = 360 + "px";

	if(HeightIst < HeightMin) {
		document.getElementById("main").style.height = HeightSoll;
	
	} 
}
//-->

