    window.onload = function() {

        var hauteur_min = 200; 
        var content = document.getElementById("content");       
        var hauteur_content = content.offsetHeight; 
       
        var max = Math.max(hauteur_min,hauteur_content);
               
        document.getElementById("background_content").style.height = max+"px";
        
        max += 430;  
           
        document.getElementById("background_repeat").style.height = max+"px";
        document.getElementById("bottom").style.top = max+"px";
                 
    }