function setHeightAll () {
	var headerHeight=192;
if (self.innerHeight) // all except Explorer
{
	window.captureEvents(Event.RESIZE);
	document.getElementById("content").style.height            = (window.innerHeight-headerHeight)+"px";
	document.getElementById("mainTable").style.height            = (window.innerHeight-headerHeight)+"px";
	document.getElementById("siteTable").style.height            = (window.innerHeight)+"px";
} else {
// Explorer 6 Strict Mode 
	document.getElementById("content").style.height            = (document.body.clientHeight-headerHeight)+"px";
}
}
	setHeightAll();
	window.onresize = setHeightAll;
