﻿var respostaAtual;

function abreResposta(codPergunta)
{
    if (respostaAtual)
        respostaAtual.style.display = 'none';
    respostaAtual = getObj('resposta' + codPergunta);
    respostaAtual.style.display = 'block';
}

function fechaResposta(codPergunta)
{
    getObj('resposta' + codPergunta).style.display = 'none';
}
