<!-- 
	//Esta função habilita/desabilita a visualização de uma linha
	function visualiza(TB){
		if (document.getElementById(TB).style.display=='') 			
			document.getElementById(TB).style.display='none';
		else 
			document.getElementById(TB).style.display='';
		}
		
	// Função de cores do menu principal (hover)
	function move_i(what) {
	 what.style.background='#572C7A'; 
	}
	
	// Função de cores do menu principal (link)
	function move_o(what) { 
	what.style.background='#FFFFFF'; 
	}
	function move_o2(what) { 
	what.style.background='#E8DCC6'; 
	}
	// Função que abre o link em fullscreen	
	function fullScreen(theURL) {
	window.open(theURL, '', 'fullscreen=yes, scrollbars=auto');
	}
	
// Função que mostra as noticias
	function newsticker()
	{

 		if (i < newslist[cnt][0].length - 1)
 		{
	 	  	i++;
		   	temp1 = newslist[cnt][0];
		   	temp1 = temp1.split('');
  	 		curr = curr+temp1[i];
 	  		temp2 = newslist[cnt][1];
   			//sem link
   			mtxt.innerHTML = curr;
   			//Com link
   			//mtxt.innerHTML = "<a href='../"+temp2+"' class='noticias2' target='_parent'>"+curr+"_</a>";
   			setTimeout('newsticker()',10)
   			return;
 		}

 		i = -1; curr = "";
 		if (cnt<newslist.length-1)
   			cnt++;
 		else
   			cnt=0;
 		setTimeout('newsticker()',5000)
	}
