function swapPhoto(photoSRC,theCaption) {

theImage = document.getElementById("mainPhoto");
theImage.setAttribute("src", photoSRC);

displayedCaption = document.getElementById("caption");
displayedCaption.firstChild.nodeValue = theCaption;

}
