function affiche(nomReg){                                                                                                               
            var divs = document.getElementsByTagName('div');                                                                                    
            for (i=0; i<divs.length; i++)                                                                                                       
            {                                                                                                                                   
                if (divs[i].getAttribute('id'))                                                                                                 
                {                                                                                                                               
                    var ident = divs[i].getAttribute('id');                                                                                     
                    if((ident != 'nomReg') && ((ident.substr(0,3) == nomReg.substr(0,3))) && 
                        ((ident.substr(4,6) != 'fleche') || ((ident.substr(4,6) == 'fleche') && (ident.substr(11,3) == nomReg.substr(4,3))) ))                                                      
                    {divs[i].style.visibility = 'hidden'}                                                                                       
                }                                                                                                                               
            }                                                                                                                                   
            if (document.getElementById(nomReg))                                                                                                
            {                                                                                                                                   
                document.getElementById(nomReg).style.visibility= 'visible';                                                                    
            }                                                                                                                                   
        }
