/* ceci est un document javascript */
<!--
function verif_contact()
{


		
		if (document.contact.info_nom.value == "")
		{
			alert("Vous avez oublié de renseigner la rubrique Nom.");
			document.contact.info_nom.focus();
			return (false);
		}
		
		if (document.contact.info_prenom.value == "")
		{
			alert("Vous avez oublié de renseigner la rubrique Prenom.");
			document.contact.info_prenom.focus();
			return (false);
		}

		if (document.contact.info_corporate.value == "")
		{
			alert("Vous avez oublié de renseigner la rubrique Entreprise.");
			document.contact.info_corporate.focus();
			return (false);
		}

		if (document.contact.info_fonction_fr.value == "")
		{
			alert("Vous avez oublié de renseigner la rubrique Fonction.");
			document.contact.info_fonction_fr.focus();
			return (false);
		}

		Ctrl = document.contact.info_email; 
		if (document.contact.info_email.value == "")
		{
			alert("Vous avez oublié de renseigner la rubrique E-mail.");
			document.contact.info_email.focus();
			return (false);
		}

		posAt = Ctrl.value.indexOf('@',0);
		posDot = Ctrl.value.indexOf('.',posAt+2);
		posPipe = Ctrl.value.indexOf('|',0);
		posStar = Ctrl.value.indexOf('*',0);

		if (posStar != -1 || posPipe != -1 || posAt == -1 || posDot == -1 || (Ctrl.value.length - posDot < 3))
		{ 
			alert("L'adresse E-mail que vous avez saisie n'est pas valide");
			document.contact.info_email.focus();
			return (false); 
		}

		if (document.getElementById("validation").checked == false)
		{
			alert("Vous avez oublié de renseigner la rubrique Conditions d'inscription.");
			return (false);
		}




return(true);
}
//-->
