function setScrollerSize() {
	var windowHeight=0;
	var position=0;

	if (typeof(window.innerHeight)=='number') {
		windowHeight=window.innerHeight;
		windowWidth=window.innerWidth;
	} else {
		if (document.documentElement&&document.documentElement.clientHeight) {
			windowHeight=document.documentElement.clientHeight;
			windowWidth=document.documentElement.clientWidth;
		} else {
			if (document.body&&document.body.clientHeight) {
				windowHeight=document.body.clientHeight;
				windowWidth=document.body.clientWidth;
			}
		}
	}
	document.getElementById('contentholder').style.height = (windowHeight-200)+'px';
	document.getElementById('leftborder').style.height = (windowHeight-200)+'px';
	var e = document.getElementById('logo');
	if (e)
		e.style.height = (windowHeight-210)+'px';
}

window.onload = setScrollerSize;
window.onresize = setScrollerSize;