﻿function swapImg(id, img) {
    if (document.getElementById(id)) {
        img = "Images/Buttons/" + img;
        document.getElementById(id).src = img;
    }
}
