var tam = 15;

function FonteMaior(tipo){
	if (tipo=="Ma") {
		if(tam<21) tam+=3;
	} 
	if (tipo=="Me") {
		if(tam>15) tam-=3;
	}
	document.getElementById('corpo_noticia').style.fontSize = tam+'px';

}
