window.onload = function() {
  
        var hauteur_content = document.getElementById("content").offsetHeight;
        
        hauteur_content += 420;

        var hauteur_page = (document.body.clientHeight);

        var max = Math.max(hauteur_content,hauteur_page);
     
        document.getElementById("content_panel").style.height = max-263-35-90+"px";
        
        document.getElementById("bottom").style.top = max-35+"px";
        
        document.getElementById("bottom").style.visibility = "visible";
        
            
    }