
function setheight() {

var col_1;
var col_2;
var col_3;
col_1=document.getElementById('col_1').offsetHeight;
col_2=document.getElementById('col_2').offsetHeight;
col_3=document.getElementById('col_3').offsetHeight;

if ((col_1>col_2) && (col_1>col_3))
{
//alert(" col_1 ");
document.getElementById('highlights').style.height=document.getElementById('col_1').offsetHeight-25 + "px";
if (document.getElementById("more_info"))
{
document.getElementById('more_info').style.height=document.getElementById('col_1').offsetHeight-35 + "px";
}

if (document.getElementById("right_box"))
{
document.getElementById('right_box').style.height=document.getElementById('col_1').offsetHeight-35 + "px";
}


}

if ((col_2>col_1) && (col_2>col_3))
{
//alert(" col_2 ");
if (document.getElementById("more_info"))
{
document.getElementById('more_info').style.height=document.getElementById('highlights').offsetHeight-25 + "px";
}

if (document.getElementById("right_box"))
{
document.getElementById('right_box').style.height=document.getElementById('highlights').offsetHeight-25 + "px";
}


}

if ((col_3>col_1) && (col_3>col_2))
{
//alert(" col_3 ");
document.getElementById('highlights').style.height=document.getElementById('col_3').offsetHeight-35 + "px";
}


}