function showPhoto(imageSource, imageWidth, imageHeight, imageName) {
	var newWindow = window.open("","newWindow","titlebar=0, fullscreen=0, toolbar=0, status=0, menubar=0, scrollbars=0, resizable=0, directories=0, location=0, width="+imageWidth+",height="+imageHeight);
	newWindow.document.open();
	newWindow.document.write('<html>\n<title></title>\n<body bgcolor="#666666" style="text-align:center;" leftmargin="0" topmargin="0" marginheight="0" marginwidth="0" onBlur="self.close()">\n');
	newWindow.document.write('<img src="'+imageSource+'" alt="'+imageName+'" onclick="window.close()">\n');
	newWindow.document.write('</body>\n</html>\n');
	newWindow.document.close();
	newWindow.focus();
	return false;
} 
