function open_cover( pFileName, pTitle, pCaption) {
	Obj = window.open( "", "photo", "width=1050,height=780,status=0,scrollbars=0,resizable=0,screenX=20,screenY=40,left=20,top=40");
	Obj.document.write('<html><head><title>' + pTitle + '</title></head>');	
	Obj.document.write('<BODY BGCOLOR=#FFFFFF TEXT=#FFFFCC LINK=#33CCFF VLINK=#FF6666>');
	Obj.document.write('<center>');
	Obj.document.write('<font size=+3 face="arial,helvetica"><b>' + pCaption + '</b></font><p>');
	Obj.document.write('<img src="' + pFileName + '"><p>');
	Obj.document.write('<p></font></body></html>');
	Obj.document.close();	

	if (navigator.appName.substring(0,8) == "Netscape") Obj.focus();

}
