// AUMENTAR E DIMINUIR FONTES

function fontMais(){
	var obj = document.getElementById("conteudoPagina");
	if (obj.style.fontSize==""){obj.style.fontSize="13px"};
	if (obj.style.fontSize=="10px"){obj.style.fontSize = "11px";}
	else if (obj.style.fontSize=="11px"){obj.style.fontSize = "12px";}
	else if (obj.style.fontSize=="12px"){obj.style.fontSize = "13px";}
	else if (obj.style.fontSize=="13px"){obj.style.fontSize = "14px";}
	else if (obj.style.fontSize=="14px"){obj.style.fontSize = "15px";}
	else if (obj.style.fontSize=="15px"){obj.style.fontSize = "16px";}
	else if (obj.style.fontSize=="16px"){obj.style.fontSize = "17px";}
	else if (obj.style.fontSize=="17px"){obj.style.fontSize = "18px";}
	else if (obj.style.fontSize=="18px"){obj.style.fontSize = "19px";}
	else if (obj.style.fontSize=="19px"){obj.style.fontSize = "20px";}
	else if (obj.style.fontSize=="20px"){obj.style.fontSize = "21px";}
	else if (obj.style.fontSize=="21px"){obj.style.fontSize = "22px";}
	else if (obj.style.fontSize=="22px"){obj.style.fontSize = "23px";}
	else if (obj.style.fontSize=="23px"){obj.style.fontSize = "24px";}
}
function fontMenos(){
	var obj = document.getElementById("conteudoPagina");
	if (obj.style.fontSize==""){obj.style.fontSize="13px"};
	if (obj.style.fontSize=="24px"){obj.style.fontSize = "23px";}
	else if (obj.style.fontSize=="23px"){obj.style.fontSize = "22px";}
	else if (obj.style.fontSize=="22px"){obj.style.fontSize = "21px";}
	else if (obj.style.fontSize=="21px"){obj.style.fontSize = "20px";}
	else if (obj.style.fontSize=="20px"){obj.style.fontSize = "19px";}
	else if (obj.style.fontSize=="19px"){obj.style.fontSize = "18px";}
	else if (obj.style.fontSize=="18px"){obj.style.fontSize = "17px";}
	else if (obj.style.fontSize=="17px"){obj.style.fontSize = "16px";}
	else if (obj.style.fontSize=="16px"){obj.style.fontSize = "15px";}
	else if (obj.style.fontSize=="15px"){obj.style.fontSize = "14px";}
	else if (obj.style.fontSize=="14px"){obj.style.fontSize = "13px";}
	else if (obj.style.fontSize=="13px"){obj.style.fontSize = "12px";}
	else if (obj.style.fontSize=="12px"){obj.style.fontSize = "11px";}
	else if (obj.style.fontSize=="11px"){obj.style.fontSize = "10px";}
}

// ESCONDER DIV

if (document.getElementById("nomedocampo").value == 7) {
	document.getElementById("outronomedecampo").style.display = "none";
}
