function check_contact(obj)
{
	with (obj)
	{
		/* verification du cochage d'au moins une case radio */
		verif = ""
		for (i=0;i<2;i++) {
				if (sexe[i].checked==true) verif++;
			}
		
		if (verif==0)
		{
			alert("Civilité manquante");
			return false;
		}


		if (!prenom.value.length > 0)
		{
			alert("Prenom manquant");
			return false;
		}

		if (!nom.value.length > 0)
		{
			alert("Nom manquant");
			return false;
		}
		
		if (!mail.value.match(/^.+@.+[.].+$/))
		{
			alert("E-mail invalide \nformat : nom@domaine.ext");
			return false;
		}


		if (!sujet.value.length >0)
		{
			alert("Sujet manquant");
			return false;
		}

		if (!texte.value.length >0)
		{
			alert("Texte manquant");
			return false;
		}
		
	}
	return true;
}


