function valider_form_contact(theForm) 
{  
	if (theForm.pNom.value.length == 0)
	{
		alert("Les champs marqués * sont obligatoires !");
		theForm.pNom.focus();
		return false;
	}
	if (theForm.pPrenom.value.length == 0)
	{
		alert("Les champs marqués * sont obligatoires !");
		theForm.pPrenom.focus();
		return false;
	}
	if (theForm.pCp.value.length != 0)
	{
		if (!isNumeric(theForm.pCp.value))
		{
			alert("Format code postal invalide !");
			theForm.pCp.focus();
			return false;
		}
	}
	if (theForm.pMail.value.length == 0)
	{
		alert("Les champs marqués * sont obligatoires !");
		theForm.pMail.focus();
		return false;
	}
	if (!isValidMail(theForm.pMail.value))
	{
		alert("Format mail invalide !");
		theForm.pMail.focus();
		return false;
	}
	if (theForm.pSujet.value.length == 0)
	{
		alert("Les champs marqués * sont obligatoires !");
		theForm.pSujet.focus();
		return false;
	}
	return true;
}
