function popup(url, title, width, height) {
  var opts = 'scrollbars=1, height=' + height + ',width=' + width;
  newwindow=window.open(url,title,opts);
  if (window.focus) {newwindow.focus()}
  return false;
}

