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.hidEnviar.value = "1";
			frm.submit();
		}
		else {
			alert (strError);
			return false;
		}

}

function actualizarListado(intOrden){
	var strValues = "orden=" + intOrden;
	var div = document.getElementById("listado-usuarios")
	div.innerHTML = "<img src='images/ajax.gif'>"	
	ajaxHTML("POST", "ajaxBuscarUsuarios.php", div, strValues);
}
