function SameH(leftDiv,rightDiv){
var a=document.getElementById(leftDiv);
var b=document.getElementById(rightDiv);
//document.write(a.clientHeight+'--');
//document.write(b.clientHeight+'--');
//document.write(a.scrollHeight+'--');
//document.write(b.scrollHeight+'--');
if (a.scrollHeight < b.scrollHeight)
{
//a.style.height= b.scrollHeight;
a.style.height=b.scrollHeight+"px";
}
else
{
//b.style.height= a.scrollHeight;
b.style.height=a.scrollHeight+"px";
}
}