// INPUT: URL, HTML name for window, width in pixels, height in pixels, 1=resizable 0=non-resizable, 1=scrollbars 0=noscrollbars, 1=toolbar 0=notoolbar
function OpenWindow(strURL, strWindowName, intWidth, intHeight, booResizable, booScrollBars, booToolbar) {
  window.open(strURL, strWindowName,
      "width="+intWidth+","+
      "height="+intHeight+","+
      "resizable="+booResizable+","+
      "scrollbars="+booScrollBars+","+
      "toolbar="+booToolbar+
      "'");
}