/* Open a sized window and create a page containing a GIF/JPEG image */
function openPixWindow(URL, width, height, title, caption) {
  var windowFeatures = "width=" + width + ",height=" + height;
  windowFeatures += ",status,scrollbars,resizable";
  newWindow = window.open("", "PictureTableWindow", windowFeatures);
  newWindow.document.open();
  newWindow.document.write('<HTML>\n<HEAD>\n<TITLE>');
  newWindow.document.write(title + '</TITLE>\n</HEAD>\n');
  newWindow.document.write('<BODY BGCOLOR="#FFFFFF">\n');
  newWindow.document.write('<P><IMG SRC="' + URL + '"></P>\n');
  newWindow.document.write('<P>' + caption + '</P>\n');
  newWindow.document.write('</BODY>\n</HTML>');
  newWindow.document.close();
}

/* Open a sized window containing an HTML table */
function openTabWindow(URL, width, height) {
  var windowFeatures = "width=" + width + ",height=" + height;
  windowFeatures += ",status,scrollbars,resizable";
  newWindow = window.open(URL, "PictureTableWindow", windowFeatures);
}
