document.write(""); function changer_langue(langue){ var strURL = new String(document.location); if (langue == "an"){ strURL = strURL.replace("_fr","_an") } if (langue == "fr"){ strURL = strURL.replace("_an","_fr"); } location.href=strURL; } function modalwin_popup(url, nom, mwidth, mheight, configuration) { if (document.all&&window.print) //if ie5 window.showModalDialog(url,nom,"help:no;resizable:no;edge:raised;status:no;dialogWidth:"+mwidth+"px;dialogHeight:"+mheight+"px"); else window.open(url,nom,configuration); }; function valider_demande_information(){ if(document.demande.nom.value=="" || document.demande.courriel.value==""){ alert("Les champs suivants doivent être remplis :\n\n- Nom et prénom\n- Courriel"); } else{ document.demande.submit(); } }