// 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");
}

var win = null;
function popupImage(path) {
  if(win) win.close();
  var win = window.open('../assets/popupImage.html?img='+path,'4flexImagePopup','width=100,height=100,scrollbar=no,resizeable=no,status=no,toolbar=no,menubar=no');
  win.focus();
}