function show_photo( pFileName, pTitle) {

// specify window parameters
  photoWin = window.open( "", "photo", "width=320,height=420,status,toolbars=no,resizable=false,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"> ');
photoWin.document.write('a:link {color: black; text-decoration:none} ');
photoWin.document.write('a:visited {color: black; text-decoration:none} ');
photoWin.document.write('a:hover {color: navy; text-decoration:underline} ');
photoWin.document.write('a:active {color: black} ');
photoWin.document.write('body,td,th { ');
photoWin.document.write('	font-family: Verdana; ');
photoWin.document.write('	font-size: 9pt; ');
photoWin.document.write('	color: #333333; ');
photoWin.document.write('} ');
photoWin.document.write('</style></head>');	
  photoWin.document.write('<BODY background="images/specwin-bg.gif" TEXT="black">');
  photoWin.document.write('<center><a href="" onClick="window.close()">');
  photoWin.document.write('<img src="' + pFileName + '" border=0><br>');
  photoWin.document.write('<font face="verdana" size="4"><b>');	
  photoWin.document.write( pTitle + '</b><br>');
  photoWin.document.write('<font size="1">');
  photoWin.document.write('Close Window</a></font></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();

}

