// JavaScript Document
function check()
 {
    if (document.FormContact.email.value=="")
	{
		alert("Ecrivez votre courriel s\'i vous plait !");
		return false;
	}
	longueur = document.FormContact.email.value.length;
	index = document.FormContact.email.value.indexOf("@");
		if ((index < 1) || (index==(longueur-1)))
		{
		alert("L\'adresse courriel n\'est pas valide !");
		document.FormContact.email.focus();
		return false;
		}
	domaine = document.FormContact.email.value.substring(index+1,longueur);
	longueur = domaine.length;
	index = domaine.indexOf(".");
	if ((index < 1) || (index==(longueur-1)))
		{
		alert("L\'adresse courriel n\'est pas valide !");
		document.FormContact.email.focus();
		return false;
		}
}
