/**
 * @author Mauricio Junior, alterado por Bruno Lima
 */
var tam = 12;

function mudaFonte(tipo,elemento){
	if (tipo=="mais") {
		if(tam<24) tam+=1;
		
	} else {
		if(tam>8) tam-=1;
		
	}
	document.getElementById('divMiddle').style.fontSize = tam+'px';

}


