function verifForm(monForm,lg)
	{
		
			
		if (monForm.nom.value=="")
			{
				if (lg=="en") { var txt="You forgot to indicate your name."; }
				else  { var txt="Vous avez oublié d'indiquer votre nom."; }
				alert (txt);
				monForm.nom.focus();
				return false;
			}
			
if (monForm.prenom.value=="")
			{
				if (lg=="en") { var txt="You forgot to indicate your first name."; }
				else  { var txt="Vous avez oublié d'indiquer votre prénom."; }
				alert (txt);
				monForm.prenom.focus();
				return false;
			}
	if (monForm.societe.value=="")
			{
				if (lg=="en") { var txt="You forgot to indicate your company."; }
				else  { var txt="Vous avez oublié de renseigner votre entreprise."; }
				alert (txt);
				monForm.societe.focus();
				return false;
			}		
			
		if (monForm.mail.value=="")
			{
				if (lg=="en") { var txt="You forgot to indicate your e-mail."; }
				else  { var txt="Vous avez oublié d'indiquer votre e-mail."; }
				alert (txt);
				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)
			{
			if (lg=="en") { var txt="Enter only characters, numbers and \".@_-\" for the field \"E-mail\"."; }
			else  { var txt="Entrez seulement des caractères, numéros et \".@_-\" pour le champ \"E-mail\"."; }
			alert(txt);
			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)))
			{
			if (lg=="en") { var txt="Enter a valid E-mail !!!\r Exemple: nom@domaine.com"; }
			else  { var txt="Entrez une adresse E-mail valide!!!\r Exemple: nom@domaine.com"; }
			alert(txt);
			monForm.mail.focus();
			return false;
			}
		}
			
		if (monForm.message.value=="")
			{
				if (lg=="en") { var txt="You forgot to indicate your message."; }
				else  { var txt="Vous avez oublié d'indiquer votre message."; }
				alert (txt);
				monForm.message.focus();
				return false;
			}
				
	return true;
	}