// JavaScript Document
// Leonardo Palomo

	// Verifica los formularios del site.
	//@Leonardo08 

 function verificar_form(f) {
	 /*
	 if (f.nombre.value == "") {
	   alert("Debe colocar su nombre.");
	   f.nombre.focus();
	   return false;
	  }
	  
	  if (f.apellidos.value == "") {
	   alert("Debe colocar su apellido.");
	   f.apellidos.focus();
	   return false;
	  }
	   if (f.fecha_nacimiento.value == "") {
	   alert("Debe colocar su fecha de nacimento.");
	   f.fecha_nacimiento.focus();
	   return false;
	  }
	   if (f.profesion.value == "") {
	   alert("Debe colocar su profesion.");
	   f.profesion.focus();
	   return false;
	  }
	   if (f.telefono_fijo.value == "") {
	   alert("Debe colocar su telefono fijo.");
	   f.telefono_fijo.focus();
	   return false;
	  }
	   if (f.telefono_movil.value == "") {
	   alert("Debe colocar su Apellido.");
	   f.telefono_movil.focus();
	   return false;
	  }*/
	   if (f.EMAIL.value == "") {
	   alert("Debe colocar su email.");
	   f.EMAIL.focus();
	   return false;
	  }
  
  //document.body.style.cursor = "wait";
  return true;
 }
