function verification(contact)
{ 
        if(contact.apellido.value == '') //Contrôle du nom
        {
                alert('Ingresan su apellido!');
                contact.apellido.focus();
                return false
        }
        if(contact.nombre.value == '')//Contrôle du prenom
        {
                alert('Ingresan su nombre !'); 
                contact.nombre.focus();
                return false
        }
        if(contact.direccion.value == '') //Contrôle de l'adresse
        {
                alert('Ingresan su dirección !'); 
                contact.direccion.focus();
                return false
        }
      				
        if(contact.ciudad.value == '') //Contrôle de la ville
        {
                alert('Ingresan su ciudad !'); 
                contact.ciudad.focus();
                return false
        }
		 
		if(contact.mail.value == '') //Contrôle de l'email
        {
                alert('Ingresan su email !'); 
                contact.mail.focus();
                return false
        }
		if(contact.mail.value.indexOf('@') == -1) 
		{
   				alert("Ce n'est pas un email valide!");
  				contact.mail.focus();
  				return false;
 		}
		if(contact.titulo.value == '') //Contrôle du titre du message
        {
                alert('Ingresan el titulo de su mensaje !'); 
                contact.titulo.focus();
                return false
        }
		if(contact.mensaje.value == '') //Contrôle du message
        {
                alert('Ingresan su mensaje !'); 
                contact.mensaje.focus();
                return false
        }
        return true;
}