 // 171 -> logo           52 -> menu        65 -> bottom 
    
    window.onload = function() {
 
        var hauteur_page = document.getElementById("page").offsetHeight; 
        
        var hauteur_browser = (document.body.clientHeight);
         
        var hauteur_max = Math.max(hauteur_page,hauteur_browser);
        
		document.getElementById("contentPanel").style.height = hauteur_max-306+"px";
		document.getElementById("bottom").style.top = hauteur_max-65+"px";
        document.getElementById("backgroundBottom").style.top = hauteur_max-65+"px";
        
     	document.getElementById("bottom").style.visibility = "visible";
        
        
    }
