function setHeight()
{
 var windowHeight=0;
 var contHeight=0;
 var contlHeight=0;
 var contrHeight=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;
	}
	}
	}
	windowHeight=windowHeight-383-220-25;
	contlHeight=document.getElementById("lcontent").offsetHeight;
	if (windowHeight<contlHeight) windowHeight=contlHeight;
	document.getElementById("content").style.minHeight=windowHeight+"px";
	//alert(document.getElementById("content").style.minHeight);
	//document.getElementById("rcontent").style.minHeight=windowHeight-5+"px";
	//document.getElementById("lcontent").style.minHeight=windowHeight-5+"px";	
	window.status="Page is loaded";
	window.onresize=setHeight;
}


	
