// JavaScript Document
function imprensa(){
	loadAno = document.getElementById("ano").value;
	loadMes = document.getElementById("mes").value;
	loadIdioma = document.getElementById("idiomaload").value;
	pagina = "/includes/imprensa.php?ano="+loadAno+"&mes="+loadMes+"&idioma="+loadIdioma;
	$('#contList').load(pagina);
}

function urlAno(caminho){
	var destino = caminho + document.getElementById("ano").value + '/';
	window.location = destino;	
}

function urlMes(caminho){
	var indice = document.frmImprensa.mes.selectedIndex;
	var destino = caminho + document.frmImprensa.mes.options[indice].text + '/';
	window.location = destino.toLowerCase();
}