function AbrirDropDown(obj) {
	$(obj).style.display = "block";
}
function AbrirDropDownWithTop(obj,top) {
	//$(obj).style.top = top-150+"px";
	$(obj).style.display = "block";
;
}
function FecharDropDown(obj) {
	$(obj).style.display = "none";
}

function setLinkMensagem(path_relativo, idNoticia) {
	$('idNoticia').value = idNoticia;
	$('mensagem').value = "Segue o link: "+path_relativo+"/publico/conteudo.ver.php?id="+idNoticia+"&ShowText=1";
}

function addPipe() {
	if($('li_esquerda')) {
		$('li_esquerda').innerHTML = "|";
	}
	if($('li_direita')) {
		$('li_direita').innerHTML = "|";
	}
}

function delPipe() {
	if($('li_esquerda')) {
		$('li_esquerda').innerHTML = "&nbsp;";
	}
	if($('li_direita')) {
		$('li_direita').innerHTML = "&nbsp;";
	}
}