﻿//id = image id within the page (and with any added ASP.NET naming)
//src = the replacement image to swap the original image with.
function swapImage(id, src) {
    document.getElementById(id).src = src;
}