

function show_photo( pFileName, pTitle, pCaption) {

  photoWin = window.open( "", "photo", "width=700,height=500,status,scrollbars,resizable,screenX=20,screenY=40,left=20,top=40");

  photoWin.document.write('<html><head><title>' + pTitle + '</title></head>');	
  photoWin.document.write('<body bgcolor=#cc0000 text=#ffffff link=#ffffff vlink=#ffffff>');
  photoWin.document.write('<center>');
  photoWin.document.write('<font size=+1 face="arial,helvetica"><b>' + pCaption + '</b></font><br>');
  photoWin.document.write('<img src="' + pFileName + '" width = "600px"><p>');
  photoWin.document.write('<font face="arial,helvetica">');	
  photoWin.document.write( '"' + pTitle + '" <br />photo &copy; www.balloonridesltd.co.uk');
  photoWin.document.write('<p></font></body></html>');
  photoWin.document.close();	
	
	if (navigator.appName.substring(0,8) == "Netscape") photoWin.focus();

}
