// JavaScript Document
function showNoticiaDetalle(id_contenido,noticiaTituloLink)
{
	var totalItems = document.getElementById('totalItems').value;
	//window.location = 'index.php?id_pagina=4&id_contenido='+id_contenido+'&lastItem='+lastItem;
	//window.location = '4-'+id_contenido+'-'+lastItem+'-Noticias_'+noticiaTituloLink+'.html';
	if(!lastItem) lastItem = 0;
	
	window.location = '4-'+id_contenido+'-'+lastItem+'-Noticias_'+noticiaTituloLink+'.html';
}

function toggleanio(anio){
    if(document.getElementById("anio_"+anio).style.display == "none"){
        document.getElementById("anio_"+anio).style.display = "block";
    }else{
        document.getElementById("anio_"+anio).style.display = "none";
    }
}
