// SetHeight 1.0 by roba
// Simulate height=100% on base page layout element
if (document.all)    {n=0;ie=1;ns6=0;}
if (document.getElementById&&!document.all)    {n=0;ie=0;ns6=1;} 

function setheight(){
	if (ns6) {
		eh = document.getElementById("con_base2").scrollHeight;
		wh = innerHeight;
		if (wh > eh) document.getElementById("con_base2").style.height=wh+"px";
		}
	else if (ie) {
		if (window.opera) pix = 0;
		else pix = 5;
		eh = document.all("con_base2").scrollHeight;
		wh = document.body.offsetHeight - pix;
		if (wh > eh) document.all("con_base2").style.height=wh+"px";
		}	
	}

