// Script para manipulação da página ListaIndices
function OrderBy(ixIndex) {
	with (document.forms['frm']) {
		elements['campo_ordem'].value = ixIndex.toString();
		method = 'get';
		submit();
	}
}

