<!--
//Specify spectrum of different font sizes:
//var szs = new Array( 'xx-small','x-small','small','medium','large','x-large','xx-large' );
var fs = new Array( '11px','12px','13px','14px','15px','16px' );

var contador = 0;
function tamanhoFonte(x){
	if(x == 0){
		if(contador < fs.length - 1){
			contador++;
			document.getElementById("conteudo").style.fontSize = fs[contador];
			//document.getElementById("caixa_noticias").style.lineHeight = fs[contador];			

		}
	}
	if( x == 1){
		if(contador > 0){	

			contador--;

			document.getElementById("conteudo").style.fontSize = fs[contador];
			//document.getElementById("caixa_noticias").style.lineHeight = fs[contador];
			
		}

	}
}