function show_photo( pFileName, pTitle, pCaption, pBottom, pWidth, pHeight) {

// specify window paramaters
	photoWin = window.open( "", "photo", "width="+pWidth+",height="+pHeight+",status,scrollbars,resizable,screenX=20,screenY=40,left=20,top=40");

// wrote content to window
	photoWin.document.write('<html><head><title>' + pTitle + '</title></head>');	
	photoWin.document.write('<BODY TEXT=#000000 LINK=#33CCFF VLINK=#FF6666>');
	photoWin.document.write('<center>');
	photoWin.document.write('<font size=+3 face="arial,helvetica"><b>' + pCaption + '</b></font><p>');
	photoWin.document.write('<img src="' + pFileName + '">');
	photoWin.document.write('<p><font face="arial,helvetica">');	
	photoWin.document.write( '' + pBottom + ' <br>');
	photoWin.document.write('<p></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();

}

