function popWindow(name, url, width, height) {
  var popup = window.open(url, name,
    'width=' + width + ',height=' + height + ',menubar=yes,toolbar=no,resizable=yes,scrollbars=yes');
  if (popup.blur) popup.focus();
  if (popup.focus) popup.focus();
}
