function ExtRef(){

if(!document.getElementsByTagName)return;

l=document.getElementsByTagName("a");
for(i=0;i<l.length;i++){
  c=l[i].className;
  if(c.indexOf("blank")!=-1){
    l[i].title=l[i].href + " (link esterno, si apre in una nuova finestra)";
    l[i].alt=l[i].href;
    l[i].onclick=function(){window.open(this.href);return(false);};
    }
  if(c.indexOf("extlink")!=-1){
    l[i].onclick=function(){window.open(this.href);return(false);};
    }

  }
}

