function show_photo( pFileName, pTitle, pCaption) 
{
	photoWin = window.open( "", "photo", "width=500,height=600,status,scrollbars,resizable,screenX=200,screenY=40,left=200,top=40");
	photoWin.document.write('<html><head><title>' + pTitle + '</title></head>');	
	photoWin.document.write('<BODY BGCOLOR=#C9C9AE TEXT=#000000 LINK=#993333 VLINK=#FF6666>');
	photoWin.document.write('<center>');
	photoWin.document.write('<font size=+3 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 + '" photo &copy; BeatnikBrown Productions<br>');
	photoWin.document.write('<a href="mailto:BnB@BeatnikBrown.com">BnB@BeatnikBrown.com</a><br>');
	photoWin.document.write('<p></font></body></html>');
	photoWin.document.close();
	if (navigator.appName.substring(0,8) == "Netscape") photoWin.focus();
}