window.onload = function() {
     
    ResizeHeight();
    
}
  

window.onresize = function() {     
    ResizeHeight();
}  

function ResizeHeight() {

<!--99 hauteur titre | 211 hauteur header | 65 hauteur bottom | 12 hauteur ligne bleu haut-->   
        var hauteur_content = document.getElementById("content").offsetHeight;
        hauteur_content += 99 + 211 + 65;       
        
        var hauteur_colonne_gauche = document.getElementById("colonne_gauche").offsetHeight;
        hauteur_colonne_gauche = 800;  


        var hauteur_page = (document.body.clientHeight);
       
<!--comparaison entre la hauteur du content et la taille du navigateur-->         

        var max = Math.max(hauteur_content,hauteur_colonne_gauche);     
        var max = Math.max(max,hauteur_page); 
        
       
        document.getElementById("colonne_gauche").style.height = max-12-65+"px";
        document.getElementById("content").style.height = max-99-211-65+"px";
        
        document.getElementById("background_bottom").style.top = max-65+"px";
        document.getElementById("credits").style.top = max-65+"px";
 
        
        document.getElementById("background_bottom").style.visibility="visible";
        document.getElementById("credits").style.visibility="visible";
            
    }