function show_photo( pFileName, pTitle, pCaption) {

// specify window parameters
  photoWin = window.open( "", pTitle, "width=738,height=728,");

// wrote content to window
  photoWin.document.write('<html><head><title>' + pTitle + '</title></head>');	
  photoWin.document.write('<BODY BGCOLOR=#240306 TEXT=#cecece LINK=#dfcecc VLINK=#dfcecc HOVER=#FFFFCC>');
  photoWin.document.write('<center>');
  photoWin.document.write('<font size=0 face="verdana,geneva, sans-serif">' + pCaption + '</font><br><br>');
  photoWin.document.write('<img src="' + pFileName + '" style="border: 1px solid #cecece;"><br>');
  photoWin.document.write('<font size=0 face="verdana,geneva, sans-serif">');	
  photoWin.document.write( pTitle + 'foto &copy; 2007 Ammy<br>');
  photoWin.document.write('<A HREF="mailto:ammy@escort-ammy.com">ammy@escort_ammy.com</A><br>');
  photoWin.document.write('<p></font</p></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();}

