function
swapPhoto(photoSRC,theCode, theCaption){
var displayedCode = document.getElementById("code");
var displayedCaption = document.getElementById("caption");
displayedCode.firstChild.nodeValue = theCode;
displayedCaption.firstChild.nodeValue = theCaption;
document.images.imgPhoto.src="gallery/" + photoSRC;
}