
//Variables para controlar el tipo de navegador
var n4 = (document.layers)? true:false;
var n6 = ((document.getElementById) && (navigator.appName=="Netscape"))? true:false;
var ie  = (document.all)? true:false

function submitpagina(num_pag) {

	/*document.forms[0].pagina.value = num_pag;
	document.forms[0].submit();*/

	document.getElementById('pagina').value = num_pag;
	document.getElementById('form_consulta').submit();

/*
	if (n4)
	{
		document.form_navegacion.pagina.value = num_pag;
		document.form_navegacion.submit();
	}
	else if (n6)
	{
		document.getElementById('pagina').value = num_pag;
		document.getElementById('form_navegacion').submit();
	}
	else
	{
		document.all('pagina').value = num_pag;
		document.all('form_navegacion').submit();
	}
*/
	return true;
}
