function makePassiveTitlesAlt() {
    if (!document.createElement || !document.getElementsByTagName) return;
    // add namespace methods to HTML DOM; this makes the script work in both
    // HTML and XML contexts.
    if(!document.createElementNS)
    {
        document.createElementNS = function(ns,elt) {
            return document.createElement(elt);
        }
    }

    if( !document.links )
    {
        document.links = document.getElementsByTagName("a");
    }
    
    for (var ti=0;ti<document.links.length;ti++) {
        var lnk = document.links[ti];
        if (lnk.title) {           
            lnk.removeAttribute("title");          
        }
    } 
    
    
    allimg = document.getElementsByTagName("img");    
    
    for (var ti=0;ti<allimg.length;ti++) {
        var img = allimg[ti];
        if (img.alt) {   			 
            img.removeAttribute("alt");          
        }
    } 
    
}

	
function MM_openBrWindow(theURL,winName,features) { //v2.0
	window.open(theURL,winName,features);
}

function ouvre(fichier) {
ff=window.open(fichier,"popup",
            "width=470,height=570,left=60,top=130,scrollbars=yes"
+",resizable=no,menubar=no,status=no") }	


