// JavaScript Document
function mostramais(botao,texto){
		botao_alvo = document.getElementById(botao)
		texto_alvo = document.getElementById(texto)
		reticencias_alvo = document.getElementById('reticencias')
		if(texto_alvo.style.display=="inline"){
				texto_alvo.style.display="none"
				botao_alvo.style.display="inline"
				reticencias.style.display="inline"
				} else {
				texto_alvo.style.display="inline"
				botao_alvo.style.display="none"
				reticencias.style.display="none"
				}
		}
function mudarBorda(alvo,cor){
		alvo_borda = document.getElementById(alvo);
		alvo_borda.style.borderColor=cor;
		}
function exibe(alvo){
	alvo = document.getElementById(alvo)
	if(alvo.style.display=="inline"){
		alvo.style.display="none"
		} else {
		alvo.style.display="inline"
		}
}