// JavaScript Document
function correctRowHeight() {
	maxheight=document.getElementById("main-right").offsetHeight;
//	maxheight=maxheight+140;

if (document.getElementById("main-left").offsetHeight>maxheight)
{
	maxheight=document.getElementById("main-left").offsetHeight;
}

//   document.getElementById('left-bottom').style.top=maxheight-104+'px';
//   document.getElementById('right-bottom').style.height=document.getElementById("right-bottom").offsetHeight+'px' ;


//   document.getElementById('right-bottom').style.height= document.getElementById('right-bottom').offsetHeight+(maxheight-document.getElementById("main-right").offsetHeight)+30+'px' ;
   document.getElementById('inner-bot').style.height= document.getElementById('inner-bot').offsetHeight+(maxheight-document.getElementById("main-right").offsetHeight)+30+'px' ;
   document.getElementById('main-left').style.height=maxheight+'px' ;
   document.getElementById('main-right').style.height=maxheight+'px' ;




  
}


