//-------------------------------------------------------------------function popup(mypage, myname, w, h, scroll) {	var winl = (screen.width - w) / 2;	var wint = (screen.height - h) / 2;	winprops = 'height='+h+',width='+w+',top='+wint+',left='+winl+',scrollbars='+scroll+',resizable'		win = window.open(mypage, myname, winprops)	if (parseInt(navigator.appVersion) >= 4) { win.window.focus(); }}//-------------------------------------------------------------------function validerContact(){	var emailReg = "^[\\w-_\.]*[\\w-_\.]\@[\\w]\.+[\\w]+[\\w]$";	var regex = new RegExp(emailReg);	if (document.form2.Nom.value==""){		alert("Entrez votre nom");		document.form2.Nom.focus();			}	else if (regex.test(document.form2.Courriel.value) == false){		alert("Entrez un courriel valide");		document.form2.Courriel.focus();	}		else if (document.form2.Codepostal.value==""){		alert("Entrez votre Code postal");		document.form2.Codepostal.focus();	}		else if (document.form2.Telephone.value==""){		alert("Entrez votre numéro de téléphone");		document.form2.Telephone.focus();	}	else{		document.form2.submit();	}}//-------------------------------------------------------------------//-------------------------------------------------------------------function validerBulletin(){	var emailReg = "^[\\w-_\.]*[\\w-_\.]\@[\\w]\.+[\\w]+[\\w]$";	var regex = new RegExp(emailReg);	if (document.form3.prenom.value==""){		alert("Entrez votre prénom");		document.form3.prenom.focus();	}	else if (document.form3.nom.value==""){		alert("Entrez votre nom");		document.form3.nom.focus();	}		else if (regex.test(document.form3.courriel.value) == false){		alert("Entrez un courriel valide");		document.form3.courriel.focus();	}		else{		document.form3.submit();	}}//-------------------------------------------------------------------
