
// JavaScript SwapImage

function swapImage(imgId,imgURL)
{
document.images[imgId].src = imgURL;
}

