﻿function SwapImage(sSourceID, newImagePath) {

    var rollImage = document.getElementById(sSourceID);
    rollImage.src = newImagePath;
}