    function update_html_ie(balise,texte)
        {
        //Fonction de remplacement innerHTML pour IE
        var blss,txt;
        
        txt = document.createTextNode(texte);
        blss = document.createElement(balise);
        blss.appendChild(txt);
        return blss;
        
        }
        
        
        
    function efface_child(id)
        {
        
        var i=0;
        var nb_noeud = document.getElementById(id).childNodes.length;
        //alert("Nb noeud = "+nb_noeud);
        
        while(i<document.getElementById(id).childNodes.length)
            {
            var noeud = document.getElementById(id).firstChild;
            
            document.getElementById(id).removeChild(noeud);
            
            /*var nom_noeud = document.getElementById(id).nodeName;
            alert(" Efface "+nom_noeud);*/
            
            }
        
        }
        
        
        
    
    
    function selection_categorie()
        {
        
        var i = 0;
        var choix1 = document.getElementById('categorie').value ;
        document.getElementById('categorie').options[0].disabled='disabled';
   

        while (i<1)
            {                                   
            switch (choix1)
                {
                
                case '1' :
                    document.getElementById('logiciel').style.visibility='visible';
                    //Verif navigator innerHTML incompatible avec IE
                    if(navigator.appName == 'Microsoft Internet Explorer')
                        {
                        efface_child('logiciel');
                        document.getElementById('logiciel').appendChild(update_html_ie('<option value="10" selected="selected"></option>','--- Séléctionner le logiciel ---'));
                        document.getElementById('logiciel').appendChild(update_html_ie('<option value="11"></option>','EFICN B'));
                        document.getElementById('logiciel').appendChild(update_html_ie('<option value="12"></option>','SWOOD'));
                        document.getElementById('logiciel').appendChild(update_html_ie('<option value="13"></option>','CZAM'));
						document.getElementById('logiciel').appendChild(update_html_ie('<option value="14"></option>','KSTOR'));
                        }
                    else
                        {
                        document.getElementById('logiciel').innerHTML ='<option value="10" selected="selected">--- Séléctionner le logiciel ---</option><option value="11">EFICN B</option><option value="12">SWOOD</option><option value="13">CZAM</option><option value="14">KSTOR</option>';
                        }
                    i=1;
                break;
                
                case '2' :
                    document.getElementById('logiciel').style.visibility='visible';
                    //Verif navigator innerHTML incompatible avec IE
                    if(navigator.appName == 'Microsoft Internet Explorer')
                        {
                        efface_child('logiciel');
                        document.getElementById('logiciel').appendChild(update_html_ie('<option value="20" selected="selected"></option>','--- Séléctionner le logiciel ---'));
                        document.getElementById('logiciel').appendChild(update_html_ie('<option value="21"></option>','EFICN SW'));
                        document.getElementById('logiciel').appendChild(update_html_ie('<option value="22"></option>','EFICN Collège'));
                        document.getElementById('logiciel').appendChild(update_html_ie('<option value="23"></option>','EFICN Procédé'));
                        }
                    else
                        {
                        document.getElementById('logiciel').innerHTML = '<option value="20" selected="selected">--- Séléctionner le logiciel ---</option><option value="21">EFICN SW</option><option value="22">EFICN Collège</option><option value="23">EFICN Procédé</option>';
                        }
                    i=1;
                break;                    
                
                default :
                alert("Veuillez séléctionner une catégorie");
                document.getElementById('logiciel').style.visibility='hidden';
                i=1;                  

                
                }
            
            }
        }



    
    function selection_logiciel()
    {
    var i=0;
    var choix2 = document.getElementById('logiciel').value;


    while(i<1)
        {
        switch(choix2)
            {
            case '11' :
                var m_a_j = 'm_a_j_eficn_b.html';
                window.location.replace(m_a_j);
                i=1;
            break;
    	    
            case '12' :
                var m_a_j = 'm_a_j_swood.html';
                window.location.replace(m_a_j);
                i=1;
            break;
    	    
            case '13' :
                var m_a_j = 'm_a_j_czam.html';
                window.location.replace(m_a_j);
                i=1;
            break;
			
            case '14' :
                var m_a_j = 'm_a_j_kstor.html';
                window.location.replace(m_a_j);
                i=1;
            break;
    	    
    	    
            case '21' :
                var m_a_j = 'm_a_j_eficn_sw.html';
                window.location.replace(m_a_j);
                i=1;
            break;
    	    
            case '22' :
                var m_a_j = 'm_a_j_eficn_college.html';
                window.location.replace(m_a_j);
                i=1;
            break;
    	    
            case '23' :
                var m_a_j = 'm_a_j_eficn_procede.html';
                window.location.replace(m_a_j);
                i=1;
            break;
            }
        }
    
        


    }
