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