<!--
function Noticia(theID) {
	document.FormNoticia.id.value = theID;
	document.FormNoticia.submit();
}

function Associado(theID,theType) {
	document.FormAssociado.id.value = theID;
	document.FormAssociado.tipo.value = theType;
	document.FormAssociado.submit();
}

function SubTema(theID) {
	document.FormSubTema.id.value = theID;
	document.FormSubTema.ano.value = document.FormAno.Select_ListagemAnos.value;
	document.FormSubTema.submit();
}

function NavSubTema(thePag) {
	document.FormNavSubTema.pag.value = thePag;
	document.FormNavSubTema.submit();
}

function VerDocumento(theID) {
	document.FormDocumento.id.value = theID;
	document.FormDocumento.submit();
}

// -->