function valida()
 {

     _objNombre = document.getElementById("ctl00_Cphcontenido_txt_nombre");
     _objEmail = document.getElementById("ctl00_Cphcontenido_txt_mail");
     _objConsulta = document.getElementById("ctl00_Cphcontenido_sugerencias");

     
     if (_objNombre.value == "" || _objNombre.value.length <= 0) {
         alert("No se ha ingresado el nombre.");
         _objNombre.focus();         
         return false;
      }

      if (_objEmail.value == "" || _objEmail.value.length <= 0) {
          alert("No se ha ingresado el email.");
          _objEmail.focus();
          return false;
      }

      if (!validar_email(_objEmail.value)) {
          alert("Email inválido.");
          _objEmail.focus();
          return false;
      }


      Largo_consulta = _objConsulta.value.length;
    
	  if (Largo_consulta < 10 || Largo_consulta > 500)
		{
		    alert("Su consulta debe contener al menos 10 caracteres con un máximo de 500 caracteres.");
		    _objConsulta.value = "";
		    _objConsulta.focus();
		    return false;
		}
	   	
return true;
		
}



