function link_popup(src, width, height) {
  var features = 'location=0,statusbar=0,menubar=0,width=' + width + ',height=' + height;
  var url = src.getAttribute('href');
  var theWindow = window.open(url, '_blank', features);
  theWindow.focus();
  return theWindow;
}

