function show_photo( pFileName, pTitle, Width, Height) {

var winl = (screen.width - Width) / 2;
var wint = (screen.height - Height) / 2;

  photoWin = window.open( "", "photo", "width="+ Width +",height="+ Height +",top="+wint+",left="+winl+",status=no,scrollbars=no,resizable=no,screenX=40,screenY=40");
 
  photoWin.document.write('<html><head><title>' + pTitle + '</title></head>'); 
  photoWin.document.write('<BODY BGCOLOR=#DEDBEE TEXT=#FFFFCC LINK=#33CCFF VLINK=#FF6666 topmargin=0 leftmargin=0>');
  photoWin.document.write('<img src="' + pFileName + '">');
  photoWin.document.write('</font></body></html>');
  photoWin.document.close(); 

if (navigator.appName.substring(0,8) == "Netscape") photoWin.focus();
}