function openWindow(pFileName, pTitle, pCaption, pAttribs)
{
	photoWin = window.open("", "photo", pAttribs);

	photoWin.document.write('<html><head><title>' + pTitle + '</title><link rel="stylesheet" href="../../style/twr_style.css" type="text/css">
</head>');	
	photoWin.document.write('<body>');
	photoWin.document.write('<center>');
	photoWin.document.write('<p><font size=+1 face="verdana"><b>' + pCaption + '</b></font></p>');
	photoWin.document.write('<img src="' + pFileName + '">');
	photoWin.document.write('</center>');
	photoWin.document.write('<script language="javascript" src="scripts/copyright.js"></script>
</body></html>');
	photoWin.document.close();

	if (navigator.appName.substring(0,8) == "Netscape") photoWin.focus();
}
