function SameH(content_left,content_right)
{
var a=document.getElementById(content_left);
var b=document.getElementById(content_right);

if (a.scrollHeight < b.scrollHeight)
{
a.style.height= b.scrollHeight + "px";
}
else
{
b.style.height= a.scrollHeight + "px";
}
}