function veriform(theForm)
{
  	if (theForm.prenom.value == "")
  	{
    	alert("Votre prénom est obligatoire.");
    	theForm.prenom.focus();
    	return (false);
  	}
    if (theForm.mail.value == "")
  	{
    	alert("Votre mail est obligatoire.");
    	theForm.mail.focus();
    	return (false);
  	}
	if (theForm.prenoma.value == "")
  	{
    	alert("Le prénom de votre ami(e) est obligatoire.");
    	theForm.prenoma.focus();
    	return (false);
  	}
    if (theForm.maila.value == "")
  	{
    	alert("Le mail de votre ami(e) est obligatoire.");
    	theForm.maila.focus();
    	return (false);
  	}
}
