// Fonction de stockage des scripts à charger 
FuncOL = new Array(); 
function addLoadListener(Obj) { 
    FuncOL[FuncOL.length] = Obj; 
} 
     
// Execution des scripts au chargement de la page 
window.onload = function() { 
    for(tot=0; tot<FuncOL.length; tot++) 
        {
	FuncOL[tot]();	
	} 

}


