function show_photo(what, photo, title, where) {
					document.standard_photo.src ='./images/stories/' + where + photo;
					document.standard_photo.alt =title;
				  
					if (title == '') {
						document.getElementById("hp_view_standard_photo_title").childNodes[0].nodeValue = '';
					} else {
						document.getElementById("hp_view_standard_photo_title").childNodes[0].nodeValue = title;
					}
}