function resize() {
	var height;
	height = window.innerHeight;					// alte Netscapes und Opera 7
	if (!height) {
		if (document.documentElement)
			height = document.documentElement.clientHeight;	// IE 6+ und Firefox
	}
	if (!height) {
		if (document.body)
			height = document.body.clientHeight;		// IE 4 und 5
	}
	var el;
	el = document.getElementById("scrollcontent");			// IE 6+, Firefox, Opera 7
	if (!el) {
		el = document.scrollcontent;				// IE 4 und 5	(?)
	}

	
	var scrollerheight = height-323+122;
	if (scrollerheight < 0) {
		scrollerheight = 100;
	}
	if (el) {
		el.style.height = scrollerheight+"px";
	}
	var timerID = setTimeout("resize()", 1000);

}

