﻿
function alteraImagem(id,n,indice)
{
    elemento = document.getElementById(id);
    elemento.src = "../img/"+indice+""+n+".gif";
}

