function resizeContent() {  
    var min_height = 525;  
    if (document.getElementById("main").offsetHeight < min_height) { 
        document.getElementById("main").style.height = min_height+"px";  
    }  
}