onload_functions.push("setHeight();");
function getLongest_1() {
	colLength = new Array(2);
	colLength[0] =	document.getElementById("Mybody_Left").offsetHeight;
	colLength[1] =  document.getElementById("Mybody_Right").offsetHeight;
	colLength.sort(sortNumber);
	colLength.reverse();
	return colLength[0];
}
function setHeight() {
	divLen = getLongest_1() - 10;		
	document.getElementById("Mybody_Left").style.height = divLen+"px";
	document.getElementById("Mybody_Right").style.height = divLen+"px";
}

function sortNumber(a,b)
{
	return a - b;
}