function swapPhoto(photoSRC,PhotoName) {
	var theImage = document.getElementById(PhotoName);
	theImage.setAttribute("src", photoSRC);
}

