window.onload = function() {
 
 
        var hauteur_fixe = 900;

        var hauteur_page = (document.body.clientHeight);

        hauteur_page -= 33;

        var max = Math.max(hauteur_fixe,hauteur_page);
        
        document.getElementById("background_bottom").style.top = max+"px";
        
         document.getElementById("menu_gauche_content").style.height = max-349+"px";
            
            document.getElementById("separateur").style.height = max-349+"px";
        
 
            
    }
