function setHeightAll () {
	var headerHeight=180+50;
if (self.innerHeight) // all except Explorer
{

window.captureEvents(Event.RESIZE);
if (document.getElementById("contentStart")) {
	document.getElementById("contentStart").style.height            = "403px";
	document.getElementById("contentRightStart").style.height            = "395px";
	document.getElementById("contentRightStart").style.width            = "172px";
		document.getElementById("rowFooterStart").style.height            = (document.body.clientHeight-411-180)+"px";
	
	} else {
  document.getElementById("content").style.height            = (window.innerHeight-headerHeight)+"px";
	document.getElementById("contentRight").style.height            = (window.innerHeight-headerHeight-8)+"px";
	document.getElementById("contentRight").style.width            = "164px";
	
	
  }
	
} else {
// Explorer 6 Strict Mode 
	if (document.getElementById("contentStart")) {
         document.getElementById("contentStart").style.height            = "411px";
	document.getElementById("contentRightStart").style.height            = document.getElementById("contentStart").style.height;
	document.getElementById("rowFooterStart").style.height            = (document.body.clientHeight-411-180)+"px";
  
} else {
		
  document.getElementById("content").style.height            = (document.body.clientHeight-headerHeight)+"px";

	//document.getElementById("contentRight").style.height            = (document.body.clientHeight-headerHeight)+"px";
	document.getElementById("contentRight").style.height            = document.getElementById("content").style.height;
	}

}
}
	setHeightAll();
	window.onresize = setHeightAll;
