function layout_colheight()
{
    var h = document.getElementById("maincotainer").scrollHeight;
    document.getElementById("mainlinks").style.height = h+'px';
    document.getElementById("mainrechts").style.height = h+'px';
}
window.onload = layout_colheight;