function expand(menu) { if(menu == 0){ window.document.getElementById('MenuServiceConseil').style.display='none'; window.document.getElementById('MenuFinancement').style.display='none'; window.document.getElementById('MenuAPropos').style.display='none'; window.document.getElementById('MenuPartenaire').style.display='none'; }else{ window.document.getElementById(menu).style.display = 'block'; //**************************************************************** // Boucle sur les enfants de mainid // pour s'assurer de pas laisser ouvert plusieurs menu à la fois //**************************************************************** if (menu == 'MenuAPropos') { window.document.getElementById('MenuServiceConseil').style.display='none'; window.document.getElementById('MenuFinancement').style.display='none'; window.document.getElementById('MenuPartenaire').style.display='none'; } if (menu == 'MenuServiceConseil') { window.document.getElementById('MenuAPropos').style.display='none'; window.document.getElementById('MenuFinancement').style.display='none'; window.document.getElementById('MenuPartenaire').style.display='none'; } if (menu == 'MenuFinancement') { window.document.getElementById('MenuServiceConseil').style.display='none'; window.document.getElementById('MenuAPropos').style.display='none'; window.document.getElementById('MenuPartenaire').style.display='none'; } if (menu == 'MenuPartenaire') { window.document.getElementById('MenuServiceConseil').style.display='none'; window.document.getElementById('MenuFinancement').style.display='none'; window.document.getElementById('MenuAPropos').style.display='none'; } } } // Desactive le menu function collapse(menu, target, targ2) { if (target) { if (target != '[object HTMLImageElement]' || target.name == '') { if (window.document.getElementById(menu)) { window.document.getElementById(menu).style.display = 'none'; } } } if (targ2) { if (targ2.tagName != 'IMG' || targ2.name == '') { if (window.document.getElementById(menu)) { window.document.getElementById(menu).style.display = 'none'; } } } }