// JavaScript Document
window.addEvent('domready',function(){
  $$('a.external').each(function(el){
    el.addEvent('click',function(ev){
			try{
			if(UrlAmiga){
  			_gaq.push(['_trackEvent','Enlaces externos automaticos',UrlAmiga]);
  			window.open(UrlAmiga)
  			//self.focus();
  			document.removeEvent('click',clickGlobal);
				UrlAmiga="";
			}
			}catch(err){
			}
			_gaq.push(['_trackEvent','Enlaces externos',this.get('text'),this.get('href')]);
      new Event(ev).stop();
      window.open(el.href)
    });
  });
});

