function swapPhoto(photoSRC,theCaption,when) {
	var displayedCaption = document.getElementById("caption");
	displayedCaption.firstChild.nodeValue = theCaption;
	var hello = document.getElementById("when");
	hello.firstChild.nodeValue = when;

    document.images.imgPhoto.src = photoSRC;
    }