//onchange sur la liste 'select_livraison' function displayProMyProfil(){ var yapart = window.document.getElementById( 'youare_part' ); var yapro = window.document.getElementById( 'youare_pro' ); if (yapart.disabled == true && yapro.disabled == true){ if (window.document.getElementById( 'youarePourLogicDisplay').value=='particulier'){ window.document.getElementById( 'pro1' ).style.display = 'none'; window.document.getElementById( 'pro2' ).style.display = 'none'; } else { window.document.getElementById( 'pro1' ).style.display = 'block'; window.document.getElementById( 'pro2' ).style.display = 'block'; } } else { if ( yapro.checked == false ){ window.document.getElementById( 'pro1' ).style.display = 'none'; window.document.getElementById( 'pro2' ).style.display = 'none'; } else { window.document.getElementById( 'pro1' ).style.display = 'block'; window.document.getElementById( 'pro2' ).style.display = 'block'; } } } function displayPro(){ var yapart = window.document.getElementById( 'youare_part' ); var yapro = window.document.getElementById( 'youare_pro' ); if (yapart.disabled == true && yapro.disabled == true){ if (window.document.getElementById( 'youarePourLogicDisplay').value=='particulier'){ window.document.getElementById( 'pro1' ).style.display = 'none'; window.document.getElementById( 'pro2' ).style.display = 'none'; window.document.getElementById( 'pro3' ).style.display = 'none'; window.document.getElementById( 'pro4' ).style.display = 'none'; } else { window.document.getElementById( 'pro1' ).style.display = 'block'; window.document.getElementById( 'pro2' ).style.display = 'block'; window.document.getElementById( 'pro3' ).style.display = 'block'; window.document.getElementById( 'pro4' ).style.display = 'block'; } } else { if ( yapro.checked == false ){ window.document.getElementById( 'pro1' ).style.display = 'none'; window.document.getElementById( 'pro2' ).style.display = 'none'; window.document.getElementById( 'pro3' ).style.display = 'none'; window.document.getElementById( 'pro4' ).style.display = 'none'; } else { window.document.getElementById( 'pro1' ).style.display = 'block'; window.document.getElementById( 'pro2' ).style.display = 'block'; window.document.getElementById( 'pro3' ).style.display = 'block'; window.document.getElementById( 'pro4' ).style.display = 'block'; } } } function iniPro(){ var yapart = window.document.getElementById( 'youare_part' ); var yapro = window.document.getElementById( 'youare_pro' ); yapro.checked = false; window.document.getElementById( 'pro1' ).style.display = 'none'; window.document.getElementById( 'pro2' ).style.display = 'none'; window.document.getElementById( 'pro3' ).style.display = 'none'; window.document.getElementById( 'pro4' ).style.display = 'none'; }