// CMS JavaScript Functions

function open4flexWindow(url,width,height) {
  if(typeof width == 'undefined') { var width = 720; }
  if(typeof height == 'undefined') { var height = 650; }
  var win=window.open(url, "opinion", "width=" + width + ", height=" + height + ", status=yes, resizable=yes, scrollbars=yes");
}

function openPrintView(masterIdx) {
  if(window.location.href.indexOf('?')) {
    void window.open(window.location.href + '&master=' + masterIdx);
  } else {
    void window.open(window.location.href + '?master=' + masterIdx);
  }

  //window.location.href = window.location.href + '&master=' + masterIdx;
}
