function buscar() {
		var frm = document.Form;
		var strError = '';
		var objCheck = new check("Form");
		
		/* Limpio los campos */
		LimpiarCampo(frm.txtFiltro, 'Nombre');
		
		objCheck.checkString("txtFiltro", "nombre", 1, 24, true);
		
		strError = objCheck.toString();
		
		if (strError == "") {
			
			frm.submit();
		}
		else {
			alert (strError);
			return false;
		}

}

