// JavaScript Document
function setFonte(acao,id){
	tamanho = document.getElementById(id).style.fontSize;
	tamanho = tamanho.split("px");
	
	if(acao == "-"){
		document.getElementById(id).style.fontSize = parseInt(tamanho[0]) - 1;
	}
	if(acao == "+"){
		document.getElementById(id).style.fontSize = parseInt(tamanho[0]) + 1;
	}
}