function show_photo(pFileName) {

// specify window parameters
  photoWin = window.open( "", "photo", "width=500,height=360,status,screenX=20,screenY=40,left=20,top=40");

// wrote content to window
  photoWin.document.write('<html><head><title>Artworks : The Naomi Cohain Foundation</title></head>');	
  photoWin.document.write('<body style="background-color:#FFFFFF;margin:0;padding:0">');
  photoWin.document.write('<img src="' + pFileName + '">');
  photoWin.document.write('<p style="font-size:10px; font-family:verdana,arial,helvetica; margin:0; padding:7px 0 0 0; text-align:center">');
  photoWin.document.write('&copy; 2005 ArtWorks Foundation<br><br><a href="javascript:window.close()" style="color:#DA2F0F"><b>CLOSE WINDOW</b></a>');
  photoWin.document.write('</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();
}
