function raw_popup(url, target) {
  features = 'location=0,statusbar=0,menubar=0,width=410,height=475';
  
  var theWindow = window.open(url, target, features);
  theWindow.focus();
  return theWindow;
}

function link_popup(src) {
  return raw_popup(src.getAttribute('href'), src.getAttribute('target') || '_blank');
}