if (document.getElementById("Page_Row1a") != null)  {
	var intRow1 = document.getElementById('Page_Row1').offsetHeight;
	var intRow2 = document.getElementById('Page_Row2').offsetHeight;
	if (intRow1 > intRow2){
		intRow1 = intRow1-40
		document.getElementById('Page_Row1a').style.height=intRow1+"px";
	}
	else{
		document.getElementById('Page_Row1a').style.height=intRow2+"px";
	}
}