function popup(url, options) {
  win = window.open(url, options.name, 'menubar=0,width=' + options.width + ',height=' + options.height);
  win.focus();
  return false;
}

