function valid_form(form) {
if (form.tx.value != "") {
		if (form.tx.value.length <= 2) { 
			alert("El campo a Buscar debe tener (3) caracteres como mínimo");
			return false;
		}
	} else {
//			alert("Debe ingresar un texto a buscar");
//			return false;
	}
}



