﻿function changeImg(id, newImg) {
    var img = document.getElementById(id);
    img.src = newImg;
}