function popUp (URL, windowName, windowOption)
{
	window.open(URL,windowName,windowOption)
}

function showhide(noticiaNumber) {
	noticia = document.getElementById("noticia"+noticiaNumber)
	if (noticia.style.display != "none")
	{
		Effect.Appear(noticia, 
		{
			duration:1, 
			from:1.0, 
			to:0,
			afterFinish: function() { noticia.style.display="none"; }
		});
		document.getElementById("maismenos"+noticiaNumber).className = "mais";
		//noticia.style.display="none";
	}
	else
	{
		Effect.Appear(noticia, 
		{
			duration:1, 
			from:0, 
			to:1.0,
			afterFinish: function() { noticia.style.display="block"; }
		});
		document.getElementById("maismenos"+noticiaNumber).className = "menos";
		//noticia.style.display="block";
	}
}

