document.observe("dom:loaded",function(){
 $$('a').each(function(s){
  s.observe("focus",function(event){ s.blur(); });
 });
 $$('a[rel="external"]').each(function(s){s.writeAttribute('target','_blank');});
});
