<!--

var fs = new Array( '10px', '11px', '12px', '13px', '14px', '15px', '16px' );
var lh = new Array( '14px', '14px', '15px', '18px', '22px', '25px', '28px' );

var contador = 1;
function tamanhoFonte(x){
	if(x == 0) {
		if(contador < fs.length - 1){
			contador++;
			document.getElementById("noticia_full").style.fontSize = fs[contador];
			document.getElementById("noticia_full").style.lineHeight = lh[contador];			

		}
	}
	
	if( x == 1){
		if(contador > 0){	
			contador--;
			document.getElementById("noticia_full").style.fontSize = fs[contador];
			document.getElementById("noticia_full").style.lineHeight = lh[contador];
		}
	}
}

//-->


