function replace_externals(links) {
  $A(links).each(function(link) {
    Event.observe(link, 'click', function(e) {
     window.open(Event.element(e).href);
     Event.stop(e);  
    });
  });
}
