// Sets the SRC attribute of an <img id="<id>" /> element.
function ChangeImage(id , imageUrl)
{
    document.getElementById(id).src = imageUrl;
}