// JavaScript Document

function pagina(pag)
{
	document.getElementById("txtNumPag").value=pag;
	document.getElementById("formulario").action="index.asp";
	document.getElementById("formulario").submit();
}

function vernoticia(cod)
{
	document.getElementById("txtNoticia").value=cod;
	document.getElementById("formulario").action="vernoticia.asp";
	document.getElementById("formulario").submit();
}

function listaNoticias()
{
	document.getElementById("formulario").action="index.asp";
	document.getElementById("formulario").submit();
}

function listaNoticiasBuscador()
{
	document.getElementById("formulario").action="buscador.asp";
	document.getElementById("formulario").submit();
}
