﻿function exibeElemento(elemento)
{
    document.getElementById(elemento).style.display = 'inline';
}
function ocultaElemento(elemento)
{
    document.getElementById(elemento).style.display = 'none';
}
