function verifForm(monForm)
	{
		if (monForm.nom.value=="")
			{
				alert ("Vous avez oublié d'indiquer votre Nom.");
				monForm.nom.focus();
				return false;
			}
		
		
			
		if (monForm.prenom.value=="")
			{
				alert ("Vous avez oublié d'indiquer votre prénom.");
				monForm.prenom.focus();
				return false;
			}
					
		
		if (monForm.societe.value=="")
			{
				alert ("Vous avez oublié d'indiquer le nom de votre société.");
				monForm.societe.focus();
				return false;
			}
			

			
			
		if (monForm.mail.value=="")
			{
				alert ("Vous avez oublié d'indiquer votre e-mail.");
				monForm.mail.focus();
				return false;
			}
			
		if (monForm.mail.value != "")
		{
		var checkOK = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyzƒþŒŽšœžŸÀÁÂÃÆÈÉÊËÌÍÎÏÐÑÒÓÔÕÖØÙÚÛÜÝßáâåëìíîïñóôøúýþÿ0123456789-@-_.";
		var checkStr = monForm.mail.value;
		var allValid = true;
		for (i = 0;  i < checkStr.length;  i++)
			{
			ch = checkStr.charAt(i);
			for (j = 0;  j < checkOK.length;  j++)
				if (ch == checkOK.charAt(j))
					break;
			if (j == checkOK.length)
				{
				allValid = false;
					break;
				}
			}
		if (!allValid)
			{
			alert("Entrez seulement des caractères, numéros et \".@_-\" pour le champ \"E-mail\".");
			monForm.mail.focus();
			return false;
			}
		adresse = monForm.mail.value;
		var place = adresse.indexOf("@",1);
		var point = adresse.indexOf(".",place+1);
		if (!((place > -1)&&(adresse.length >2)&&(point > 1)))
			{
			alert('Entrez une adresse E-mail valide!!!\r Exemple: nom@domaine.com');
			monForm.mail.focus();
			return false;
			}
		}
			
			if (monForm.message.value=="")
			{
				alert ("Vous avez oublié d'écrire votre message.");
				monForm.message.focus();
				return false;
			}
				
	return true;
	}
