// JavaScript Document

var left_div="about_Details";
var right_div="content-Right";
function change(id1,id2){
	var con1=document.getElementById(id1);	
	var con2=document.getElementById(id2);	
	if(con1.offsetHeight<con2.offsetHeight){
		con1.style.height=(con2.offsetHeight-55)+"px";		
	}
	else {
		con2.style.height=(con1.offsetHeight-0)+"px";		
	}
}
window.onload=function mm(){
	try{
		change(left_div,right_div);		
	}
	catch(e){
	}
}
