// Mostrar imagem
function mostrar(destino,imagem) {
    DivDestino  = getElementById(destino);
    SrcImagem   = getElementById(imagem).src;
    alert("Destino: "+DivDestino+" - Imagem: "+SrcImagem);
}
