function show_photo( pFileName, pTitle, pCaption) {

	photoWin = window.open("","photo","width=600,height=500,status,scrollbars,resizable,screenX=20,screenY=40,left=20,top=40");

	photoWin.document.write('<html><head><title>' + pTitle + '</title>');	
	photoWin.document.write('<link href=asstyle.css rel=stylesheet type=text/css></head>');	
	photoWin.document.write('<body LINK=#000000 VLINK=#000000 ALINK=#000000>');
	photoWin.document.write('<center><br><br><p>');
	photoWin.document.write('<img src="' + pFileName + '" border=1>');
	photoWin.document.write('</center><br><br>');
	photoWin.document.write('</body></html>');
	photoWin.document.close();	

	if (navigator.appName.substring(0,8) == "Netscape") photoWin.focus();
}













