		   function show_photo( pFileName, pTitle, pCaption) {
			photoWin = window.open( "", "photo", "width=700,height=500,status,scrollbars,resizable,screenX=20,screenY=40,left=20,top=40");
	      photoWin.document.write('<html><head><title>' + pTitle + '</title></head>');
	      photoWin.document.write('<BODY BGCOLOR=#FFFFFF TEXT=#000000 LINK=#33CCFF VLINK=#FF6666>');
	      photoWin.document.write('<center>');
	      photoWin.document.write('<font size=+2 face="arial,helvetica"><b>' + pCaption + '</b></font><br>');
	      photoWin.document.write('<img src="' + pFileName + '"><p>');
	      photoWin.document.write('<font face="arial,helvetica">');
	      photoWin.document.write( pTitle );
	      photoWin.document.write('<p><a href="javascript:window.close();">Close</A>');
	      photoWin.document.write('<p></font></body></html>');
	      photoWin.document.close();
	   }

