// JavaScript Document
//function to display a photo
function showPhoto (whichPhoto) {
if (document.getElementById) {
	document.getElementById('photo').src = 'images/placeholder.gif';
	document.getElementById('photo').src = whichPhoto.href;
	return false;
	}
else {
	return true;
	}
}

