function show_photo( pFileName, pTitle, pCaption) {

// specify window parameters
  photoWin = window.open( "", "photo", "width=500,height=450,scrollbars,resizable,     screenX=20,screenY=40,left=20,top=40");

// wrote content to window
  photoWin.document.write('<html><head><title>' + pTitle + '</title>');
  photoWin.document.write('<style type="text/css"> <!-- p  {  font-family: Verdana, Arial, Helvetica, sans-serif;  font-weight: normal; font-size: 70%; }	a {  font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 9pt; color: #0066CC; text-decoration: none} --> </style> ');
  photoWin.document.write('</head>');	
  photoWin.document.write('<BODY BGCOLOR="#EFF0F3" >');
  photoWin.document.write('<p align="center"> <b>' +  pCaption + '</b></p>');
  photoWin.document.write('<p align="center"><img src="' +  pFileName + '"></p>');
  photoWin.document.write('</body></html>');
  photoWin.document.close();	
	
// If we are on NetScape, we can bring the window to the front
	if (navigator.appName.substring(0,8) == "Netscape") 
	photoWin.focus();
}
