// JavaScript Document
<!--


function getWindowHeight() {
	var windowHeight = 0;
	if (typeof(window.innerHeight) == 'number') {
		windowHeight = window.innerHeight;
	}
	else {
		if (document.documentElement && document.documentElement.clientHeight) {
			windowHeight = document.documentElement.clientHeight;
		}
		else {
			if (document.body && document.body.clientHeight) {
				windowHeight = document.body.clientHeight;
			}
		}
	}
//	alert(windowHeight+0);
	return windowHeight;
}

function setMainHt() {
	if (document.getElementById) {
		var windowHeight = getWindowHeight();
//		alert (windowHeight);
		if (windowHeight > 0) {
//			var containervar = document.getElementById(container);
//			alert (containervar.name);
//			var headerHeight=document.getElementById('header').style.height;
//			alert(headerHeight);
			var footerHeight  =document.getElementById('footer').style.height;
//			alert (footerHeight);
			
//			var contentElement = document.getElementById('content');
//			container.style.height=windowHeight
			sidebar2.style.height=(windowHeight-285) + 'px';
			mainContent.style.height = (windowHeight - 275) + 'px';
			mainContent.style.position = 'static';
		}
	}
}
-->
