﻿function changeImage(imageId, changeSrc) {
    var imgObj = document.getElementById(imageId);
    imgObj.src = changeSrc;
}
