function popup(url, title, width, height) {
  var popup = window.open(url, title, "width="+width+",height="+height+",resizable=yes,scrollbars=yes");
  popup.focus();
}