function TamFonte(num, id, ext) {
	if (id == "home") {
		obj1 = document.getElementById('home_caixa_destaques');
		obj2 = document.getElementById('home_caixa_acontece');
		obj3 = document.getElementById('tabela_resultados');
		obj4 = document.getElementById('tabela_raiox');
		if (num == 1) {
			obj1.style.fontSize = obj2.style.fontSize = '12px'; 
			obj1.style.lineHeight = obj2.style.lineHeight = '1.25'
			obj3.style.fontSize = obj4.style.fontSize = '10px';
		} else {
			obj1.style.fontSize = obj2.style.fontSize = '18px'; 
			obj1.style.lineHeight = obj2.style.lineHeight = '1.05'
			obj3.style.fontSize = obj4.style.fontSize = '12px';
		}
	}
	if (id == "int") {
		obj1 = document.getElementById('conteudo');
		obj2 = document.getElementById('breadcrumb');
		obj3 = document.getElementById('menu_lateral');
		if (ext == "correcao") obj4 = document.getElementById('tabela_dados');
		if (num == 1) {
			obj1.style.fontSize = obj2.style.fontSize = obj3.style.fontSize = '12px';
			if (ext == "correcao") obj4.style.fontSize = '10px';
		} else {
			obj1.style.fontSize = obj2.style.fontSize = obj3.style.fontSize = '14px';
			if (ext == "correcao") obj4.style.fontSize = '12px';
		}
	}
	if (id == "busca_result") {
		obj1 = document.getElementById('busca_resultado');
		obj2 = document.getElementById('breadcrumb');
		obj3 = document.getElementById('dados');
		if (num == 1) {
			obj1.style.fontSize = obj2.style.fontSize = '12px';
			obj3.style.fontSize = '10px';
		} else {
			obj1.style.fontSize = obj2.style.fontSize = '14px';
			obj3.style.fontSize = '12px';
		}	
	}
	if (id == "mapa") {
		obj1 = document.getElementById('breadcrumb');
		obj2 = document.getElementById('mapa');
		if (num == 1) {
			obj1.style.fontSize = obj2.style.fontSize = '12px';
		} else {
			obj1.style.fontSize = obj2.style.fontSize = '14px';
		}	
	}
}