 function valida_envia(){
    //valido el nombre
    if (document.fvalida.nombre.value.length==0){
       alert("Écrivez son Nom, nom de famill.")
       document.fvalida.nombre.focus()
       return 0;
    }
	
	//valido actividad
    if (document.fvalida.actividad.value.length==0){
       alert("Écrivez son activité.")
       document.fvalida.actividad.focus()
       return 0;
    }
	
	//valido provincia
    if (document.fvalida.provincia.value.length==0){
       alert("Écrivez son province.")
       document.fvalida.provincia.focus()
       return 0;
    }
	
	//valido pais
    if (document.fvalida.pais.value.length==0){
       alert("Écrivez son pays.")
       document.fvalida.pais.focus()
       return 0;
    }
	
	//valido telefono
    if (document.fvalida.telefono.value.length==0){
       alert("Écrivez son téléphone.")
       document.fvalida.telefono.focus()
       return 0;
    }
	
	//valido el email
    if (document.fvalida.email.value.length==0){
       alert("Écrivez son e-mail.")
       document.fvalida.email.focus()
       return 0;
    }
	
	if (!fvalida.checkbox.checked){//Elemento type=checkbox
alert("DEVEZ LIRE ET ACCEPTER Politique de confidentialité");return false;

} 
		
	document.fvalida.submit();
} 
