﻿function swapImg(id, url) {
    var elm = document.getElementById(id);
    elm.src = url;
}
