// JavaScript Document

var tam_fonte = 11;

function mudaFonte(opc){
	if (opc == 'menos'){	
		tam_fonte-=2;
		if (tam_fonte < 9)
			tam_fonte = 9;
	}

	if (opc == 'mais'){	
		tam_fonte+=2;
		if (tam_fonte > 40)
			tam_fonte = 40;
	}
	
	$('#texto').css('font-size', tam_fonte + 'px');	

}

function abrirPopup(url){	
		window.open(url,'noticia' , 'width=700, height=600,top=100,left=100,resizable=1,status=0,menubar=0,scrollbars=1');
}
