function showPic (which, picWidth, picHeight, caption)  {
  openString = "width=" + picWidth + ",height=" + picHeight + ",screenX=55,screenY=55,scrollbars=no,menubar=no,location=no,status=no";
  picWin = window.open('','picWin',openString);
  picWin.document.write('<html><head><style type="text/css">');
  picWin.document.write('a  { font: bold 8px arial; color: #699; background: #000; padding: 6px; border: 1px solid #699; text-decoration: none}');
  picWin.document.write('body  { background: #000; font-weight: bold; font-size: 11pt; font-variant: small-caps; color: #CCC; }');
  picWin.document.write('</style></head>');
  picWin.document.write('<body onBlur="this.close()"><center><img  src="' + which + '"><br /><br />');
  picWin.document.write(caption + '<br /><br />');
  picWin.document.write('<a href="javascript:this.close();">C L O S E</a><br /></body></html>');
  return;
  }