function popupNoticiaEmail(id,url) {
	var url = "enviar_email.php?id="+id+'&url='+url;
	window.open(url,'popupEmail'+id , 'width=500, height=400,resizable=1,status=0,menubar=0,scrollbars=1');
}
var rottime;
var rotatual=0;
function notrotativo(opcao) {
	var ul=document.getElementById('noticias_ini_rotativo');
	ul=ul.childNodes[0];
	if (opcao=='iniciar') {
		ul.childNodes[rotatual].className='li_noticia'; 
//		ul.childNodes[rotatual].className='hide';
//		Element.hide(ul.childNodes[rotatual]); new Effect.Appear(ul.childNodes[rotatual]);
		rottime=window.setInterval('notrotativo("+1")',7000);
	}
	if (opcao=='-1') {
		if (rotatual==0) voltar=(ul.childNodes.length-1); else voltar=(rotatual-1);
//		Element.hide(ul.childNodes[rotatual]);
		ul.childNodes[rotatual].className='hide';
		rotatual=voltar;		
		window.clearInterval(rottime);
		notrotativo('iniciar');
		document.getElementById('rot_bt_pause_play').innerHTML='<a href="javascript:notrotativo(\'pause\');"><img src="../imagens/rot_pause.jpg" alt="Pause" /></a>';
	}
	if (opcao=='+1') {
		if (rotatual==(ul.childNodes.length-1)) avanca=0; else avanca=(rotatual+1);
//		Element.hide(ul.childNodes[rotatual]);
		ul.childNodes[rotatual].className='hide';
		rotatual=avanca;
		window.clearInterval(rottime);
		document.getElementById('rot_bt_pause_play').innerHTML='<a href="javascript:notrotativo(\'pause\');"><img src="../imagens/rot_pause.jpg" alt="Pause" /></a>';
		notrotativo('iniciar');
	}
	if (opcao=='pause') {
		document.getElementById('rot_bt_pause_play').innerHTML='<a href="javascript:notrotativo(\'play\');"><img src="../imagens/rot_play.jpg" alt="Play" /></a>';
		window.clearInterval(rottime);
	}
	if (opcao=='play') {
		notrotativo('+1');
	}
}

function createRss(title,url) {
	rss=document.createElement('link');
	rss.type='application/atom+xml';
	rss.rel='alternate';
	rss.href=url;
	rss.title='title';
	document.getElementsByTagName('head')[0].appendChild(rss);
}

function popupNoticiaImpressao(id) {
	var url = "impressao.php?id="+id;	
	window.open(url,'popupImpressao'+id , 'width=700, height=600,resizable=1,status=0,menubar=0,scrollbars=1');
}
