function resizeContent() {
    minHeight = 600;

    o = document.getElementById("content");
    if (o) 
    {
        if (o.offsetHeight < minHeight)
        {
            o.style.height = minHeight + "px";
        }
    }
}
