// 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 abrirPopupImpressao(id){	
		var url = "impressao.php?id=" + id;	
		window.open(url,'Impressao' , 'width=700, height=600,top=100,left=100,resizable=1,status=0,menubar=0,scrollbars=1');
}

function enviarPorEmail(id, tipo){	
		var url = "envianoticia.php?id=" + id;	
		window.open(url,'Impressao' , 'width=700, height=600,top=100,left=100,resizable=1,status=0,menubar=0,scrollbars=1');
}

