/* give anchors with attribute rel="external" a target attribute of "_blank" */
  Event.observe(window,'load', function() {
  $$('a:[rel=external]').invoke('writeAttribute',{target: "_blank"});
  });



