﻿function show_photo( pFileName, pTitle, pCaption, pWidth, pHeight) {

// new indow parameters
var pOptions = "width=" + (pWidth + 40) + ",height=" + (pHeight + 140) + ",screenX=20,screenY=20,left=20,top=40";

photoWin = window.open( "", "", pOptions);

// wrote content to window
photoWin.document.write('<html><head><title>' + pTitle + '</title></head>');	
photoWin.document.write('<body bgcolor=#3a6639 text=#c9b5a6 link=#ffffff>');
photoWin.document.write('<p align="center"><font size=+1 face="Arial, Helvetica" color="ffffff">' + pTitle + '</font></p>');
photoWin.document.write('<p align="center"><img src="' + pFileName + '"></p>');
photoWin.document.write('<p align="center"><font size=-1 face="Arial, Helvetica"><em>' + pCaption + '</em></p>');	
photoWin.document.write('<p align="center"><a href="javascript:self.close()"><img src="../images/close.gif" alt="Close Window Button" height="15" width="15" align="absmiddle" border="0" /></a> <font size="2"><a href="javascript:self.close()">Close Window</a></font></p>')
photoWin.document.write('<p></p></font></div></body></html>');
photoWin.document.close();	
	
// For NetScape, bring the window to the front
if (navigator.appName.substring(0,8) == "Netscape") photoWin.focus();
}
