/****************************************
troca o tamanho da fonte 
recebe dois parametros
id = id que vai ser trocado o tamanho
termo = se vai aumentar ou diminuir

*********************Chamar a função por este bloco de comando ****************************

<span style="float:right">
	<span style="cursor:pointer" onclick="setFontSize('ID','sub')" > - </span> A
	<span style="cursor:pointer" onclick="setFontSize('ID','add')" > + </span>
</span>

*/

	var aux = 13;
	function setFontSize(id,termo)		
	{
		if (termo == 'sub'){
			if(aux > 13){
				aux = aux - 3;
				document.getElementById(id).style.fontSize= aux+"px";
			}				
			return;			
		}else{
			if(aux < 24){
				aux = aux + 3;
				document.getElementById(id).style.fontSize= aux+"px";
			}				
			return;			
		}
	}