    window.onload = function() {

        var minheight = 70;
        var content = document.getElementById("content");       
        var hauteur_content = content.offsetHeight; 
        
        var hauteur_content = Math.max(minheight,hauteur_content);
        
        document.getElementById("background_content").style.height = hauteur_content+"px";
        
        hauteur_content += 342;     
        document.getElementById("bottom").style.top = hauteur_content+"px";
       
 
        
        document.getElementById("background_content").style.visibility = "visible";
        document.getElementById("bottom").style.visibility = "visible";          
    }