function mostra(qual) {
	var obj = document.getElementById(qual);
	if(obj != null) {
		obj.style.display= ""
	}
}
function esconde(qual) {
	var obj = document.getElementById(qual);
	if(obj != null) {
		obj.style.display= "none"
	}
}
function escondeTodas() {esconde("esqueciMinhaSenha");esconde("fazerLogin");}
