function mailit(name,domain) {status="mailto:" + name + "@" + domain;locationstring = "mailto:" + name + "@" + domain;window.location = locationstring;}//____________________________________________________// code pour vrification du formulaire d'abonnement - version franaisefunction checkEmail(myForm) {if (/^\w+([\.-]?\w+)*@\w+([\.-]?\w+)*(\.\w{2,3})+$/.test(myForm.email.value)){return (true)}alert("L'adresse courriel fournie est invalide!")                return (false)}//____________________________________________________// code pour vrification du formulaire d'abonnement - version anglaisefunction checkEmailE(myForm) {if  (/^\w+([\.-]?\w+)*@\w+([\.-]?\w+)*(\.\w{2,3})+$/.test(myForm.email.value)){return (true)}alert("Invalid email address")                return (false)}//____________________________________________________// code pour ne pas afficher l'image de fond sous Netscape  4.xfunction NcBGswap() {if (!(navigator.appName == "Netscape" && navigator.appVersion < "5")) {document.write('<LINK REL=STYLESHEET HREF="stylesBG.css" TYPE="text/css">')}}NcBGswap()//____________________________________________________