	var regCourrielValide = /^[a-zA-Z0-9._-]+@[a-zA-Z0-9.-]{2,}[.][a-zA-Z.]{2,9}$/;
	
	function validCourriel()
	{
		if( (document.getElementById("txtCourriel").value != "") ) {
			if( regCourrielValide.test(document.getElementById("txtCourriel").value) ) {
				return true;
			}
			else
			{
				alert("Votre adresse e-mail semble invalide.");
				return false;
			}
		}
	}

function ouvrir_image(nom) {

javascript:window.open(nom,'','height=400,width=550,status=yes,toolbar=no,menubar=no');



}


