// utility to open a pop-up window at fixed size

function popSizeable(URL,width,height) {
  OpenWin = this.open(URL, "CtrlWindow", "toolbar=no,menubar=no,location=no,scrollbars=yes,resizable=yes,height=" + height + ",width=" + width );
}
