function loadimg(theimg) {
	var imgshow = document.getElementById('show');
	imgshow.src="/photos/" + theimg + ".jpg";
	imgshow.style.display="block";
}

function dismissimg() {
	var imgshow = document.getElementById('show');
	imgshow.style.display="none";
	imgshow.src="";
}

