function show_item( pFileName, pFile2Name, description, pTitle, pCaption) {

// specify window parameters
  photoWin = window.open( "", "photo","width=350,height=480,status,scrollbars,resizable,screenX=20,screenY=40,left=20,top=40");

// wrote content to window
  photoWin.document.write('<html><head><meta http-equiv="imagetoolbar" content="no" /><title>' +  pTitle + '</title></head>');	
  photoWin.document.write('<body>');
  photoWin.document.write('<center>');
  photoWin.document.write('<font size=+2 color="purple" face="verdana"><b>' + pCaption + '</b></font><br><br>');
  photoWin.document.write('<img style="border: 1px solid purple" src="' + pFileName + '"><p><br/>');
  if(pFile2Name != 'images/'){
		photoWin.document.write('<a href="' + pFile2Name + '" target="new">View Larger Image</a><br/><br/>');
	}
  photoWin.document.write(description);

  photoWin.document.write('<p></font></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();
}
