function domSwap(imageID, imageURL){
theImg=document.getElementById(imageID);
theImg.setAttribute("src",imageURL);
}

function domSwapBack(imageID, imageURL){
theImg=document.getElementById(imageID);
theImg.setAttribute("src",imageURL);
}