function SetContentSize()
{
    var left_pane = document.getElementById("left_pane");
    var right_pane = document.getElementById("right_pane");
    var center_pane = document.getElementById("center_pane");
    
    if (left_pane && right_pane && center_pane)
    {
        var height =    (left_pane.offsetHeight < right_pane.offsetHeight) ? right_pane.offsetHeight : left_pane.offsetHeight;
        
        if (center_pane.offsetHeight < height)
        {
            center_pane.style.height = height + 'px';
        }
    }
}

function ShowPic(pic)
{
    window.open('display.php?pic=galery/'+pic+'.jpg','','width=500,height=500');
}

function Close() 
{
    window.close();
}

function ResizeByImage(cx, cy)
{
    window.resizeTo(cx+46, cy+140);
}
