function setHeight(firstid, secondid)
{


var first = document.getElementById(firstid);
var second  = document.getElementById(secondid);

var x = first.offsetHeight;

var y = second.offsetHeight;

if(second.offsetHeight < x)
{

	second.style.height = x + "px";
	first.style.height  = x + "px";
	
	return;
}
else
{
	first.style.height = y + "px";
	second.style.height = y + "px";
	return;
}

}
