var win = null;

function openPopup(url, width, height) {
  width = width + 20;
  height = height + 20;
  win = window.open(url, 'ScrumeduPopup', 'width='+width+',height='+height);
  win.focus();
}

