/** FUNCIONES USADAS DESDE LA PLANTILLA paginador.tpl */
function KeyDown(evt,key)
{
	var tecla = (window.Event ? evt.which : evt.keyCode);
	if(tecla == 13) Buscar(key);
}
function Buscar(key)
{
	gebi("filtro_campo"+key).value = gebi("fc"+key).options[gebi("fc"+key).selectedIndex].value;
	gebi("filtro_valor"+key).value = gebi("fv"+key).value;
	gebi("filtro_exacto"+key).value = gebi("fe"+key).checked ? "1" : "0";
	gebi("paginacionForm"+key).submit();
}
function Ordenar(por,modo,key)
{
	gebi("por"+key).value = por;
	gebi("modo"+key).value = modo;
	gebi("paginacionForm"+key).submit();
}
function Listado(desde, key)
{
	gebi("desde"+key).value = desde;
	gebi("paginacionForm"+key).submit();
}
