function imageView(imageUrl,caption) {
  imageWindow = window.open("","imageWindow", "width=640,height=550,scrollbars=yes,resizable=yes,alwaysRaised=yes,menubar=yes,toolbar=yes");
  imageWindow.focus();
  imageWindow.document.open();
  imageWindow.document.writeln('<html lang="en-US"><head><title>Cathedral of All Saints Image Viewer: ' + caption +  '</title><meta http-equiv="Content-Type" content="text/html;charset=iso-8859-1" /><link rel="stylesheet" href="cathedralstyle2.css" type="text/css"/></head>');
  imageWindow.document.writeln('<body bgcolor="black">');
  imageWindow.document.writeln('<div align="center">');
  if (caption != "") {
    imageWindow.document.writeln('<h2 style="color:#999;">' + caption + '</h2>');
  } else {
    imageWindow.document.writeln('<p style="margin-top:1em">&nbsp;</p>');
  }
  imageWindow.document.writeln('<p><img src="' + imageUrl + '" alt="' + caption + '" /></p>');
  imageWindow.document.writeln('<p><a href="javascript:self.close();" style="color:#999">close window</a></p>');
  imageWindow.document.writeln('</div>  </div></body></html>');
  imageWindow.document.close();
}