<!-- // swap title, description, image source, width and height
function swapPhoto(photoSRC,theTitle,theDescription,theWidth,theHeight) {

	var displayedTitle = document.getElementById("pictitle");
	var displayedDescription = document.getElementById("picdesc");
	
	displayedTitle.firstChild.nodeValue = theTitle;
	displayedDescription.firstChild.nodeValue = theDescription;

    document.images.imgPhoto.src = "/images/photos/" + photoSRC;
    document.images.imgPhoto.width = theWidth ;
    document.images.imgPhoto.height = theHeight;
}
// -->
