var liste = [ [ //Entrepreneur ['Votre activité','http://www.smabtp.fr/WebCommun/WEB_P_GENERALE.NSF/SPI/BF1C079DE78CAB01C12570460049779C?OpenDocument'], ['Vos biens','http://www.smabtp.fr/WebCommun/WEB_P_GENERALE.NSF/SPI/14C1CF9471BA9FD0C125704A004FEEF6?OpenDocument'], ['Vos collaborateurs','http://www.smabtp.fr/WebCommun/WEB_P_GENERALE.NSF/SPI/3032DB4CF851DB44C125704C004B64C6?OpenDocument'] ], [ //Entrepreneur TP ['Votre activité','http://www.smabtp.fr/WebCommun/WEB_P_GENERALE.NSF/SPI/AFC9DDDDCE6E7CA4C12571370033CA43?OpenDocument'], ['Vos engins de chantier','http://www.smabtp.fr/WebCommun/WEB_P_GENERALE.NSF/SPI/55BF807A8BAA658EC12571370033CCD3?OpenDocument'], ['Votre flotte auto','http://www.smabtp.fr/WebCommun/WEB_P_GENERALE.NSF/SPI/79CB29404C683389C12571370033CDA0?OpenDocument'], ['Vos collaborateurs','http://www.smabtp.fr/WebCommun/WEB_P_GENERALE.NSF/SPI/5CE4E5250CB15B81C12571370033CDB4?OpenDocument'] ], [//Artisan ['Votre activité','http://www.smabtp.fr/WebCommun/WEB_P_GENERALE.NSF/SPI/7E5E34348DE71F93C125705000304E1F?OpenDocument'], ['Vos locaux professionnels','http://www.smabtp.fr/WebCommun/WEB_P_GENERALE.NSF/SPI/2F5C8E30E59D5E9AC1257050004378E2?OpenDocument'], ['Vos locaux professionnels et privés','http://www.smabtp.fr/WebCommun/WEB_P_GENERALE.NSF/SPI/D9ABC321E3A063E6C1257192002E0D35?OpenDocument'], ['Vos véhicules','http://www.smabtp.fr/WebCommun/WEB_P_GENERALE.NSF/SPI/03BB23CF08F61A95C1257050004AB0E2?OpenDocument'] ], [//Maître d'oeuvre ['Votre activité','http://www.smabtp.fr/WebCommun/WEB_P_GENERALE.NSF/SPI/DA9C437E501DC4A0C1257058005257B6?OpenDocument'], ['Vos biens','http://www.smabtp.fr/WebCommun/WEB_P_GENERALE.NSF/SPI/8F13D156511E6787C125705900412E55?OpenDocument'], ['Vos collaborateurs','http://www.smabtp.fr/WebCommun/WEB_P_GENERALE.NSF/SPI/7170F0831C3A7804C125705A004E3481?OpenDocument'] ], [//Maître d'ouvrage ['Votre activité','http://www.smabtp.fr/WebCommun/WEB_P_GENERALE.NSF/SPI/FB084C967E762317C1257061004BC237?OpenDocument'], ['Vos biens','http://www.smabtp.fr/WebCommun/WEB_P_GENERALE.NSF/SPI/8B6E4BFF458FE813C125705200450870?OpenDocument'], ['Vos collaborateurs','http://www.smabtp.fr/WebCommun/WEB_P_GENERALE.NSF/SPI/6616B4540CCC284DC12570540035475A?OpenDocument'] ], [//Négociant ['Votre activité de vendeur','http://www.smabtp.fr/WebCommun/WEB_P_GENERALE.NSF/SPI/B91352BD85AEE7D6C125711100483A40?OpenDocument'], ['Votre activité de distributeur','http://www.smabtp.fr/WebCommun/WEB_P_GENERALE.NSF/SPI/9E83E9902B88179BC125711400500DBE?OpenDocument'], ['Vos biens','http://www.smabtp.fr/WebCommun/WEB_P_GENERALE.NSF/SPI/B34EF09B4A449C7AC1257114004BE77D?OpenDocument'], ['Vos collaborateurs','http://www.smabtp.fr/WebCommun/WEB_P_GENERALE.NSF/SPI/E8F3DEC61449BBC1C1257115002BB729?OpenDocument'] ], [//Particulier ['Vos biens et vos loisirs','http://www.smabtp.fr/WebCommun/WEB_P_GENERALE.NSF/SPI/EC84C99B07F5BF7DC125705F004CD4BA?OpenDocument'], ['Votre famille','http://www.smabtp.fr/WebCommun/WEB_P_GENERALE.NSF/SPI/2BE10255AE428541C125706000440012?OpenDocument'], ['Votre épargne','http://www.smabtp.fr/WebCommun/WEB_P_GENERALE.NSF/SPI/2E413FFBE104443CC12570610027E81C?OpenDocument'] ] ]; function changeListe2(position) { if (position == 0) return false; position -= 1; principal = document.getElementById("trDoubleCombo"); noeudListe = document.getElementById("liste2"); noeudListe.parentNode.removeChild(noeudListe); nouveauNoeud = document.createElement('select'); nouveauNoeud.name = 'liste2'; nouveauNoeud.id = 'liste2'; nouveauNoeud.style.width = '180px'; principal.appendChild(nouveauNoeud); opt = document.createElement('option'); opt.value = '0'; opt.innerHTML = 'Sélectionnez'; nouveauNoeud.appendChild(opt); for (var i = 0; i < liste[position].length; i++) { opt = document.createElement('option'); opt.value = liste[position][i][1]; opt.innerHTML = liste[position][i][0]; nouveauNoeud.appendChild(opt); } } function goToURL() { if (document.doubleCombo.liste2.selectedIndex == 0) return false; //alert(document.doubleCombo.liste2[document.doubleCombo.liste2.selectedIndex].value); window.location = document.doubleCombo.liste2[document.doubleCombo.liste2.selectedIndex].value; }