onload=function(){
if(!document.getElementsByTagName) return;
l=document.getElementsByTagName("a");
for(i=0;i<l.length;i++){
  if(l[i].className.indexOf("ext")!=-1){
    l[i].title="Questo link apre una nuova finestra";
    l[i].onclick=function(){window.open(this.href);return(false)};
    }
  if(l[i].className.indexOf("pop400")!=-1){
    l[i].title="Questo link apre una popup";
    l[i].onclick=function(){window.open(this.href,'null','toolbar=yes,location=yes,status=yes,menubar=yes,scrollbars=yes,resizable=yes,width=400,height=300');return(false)};
    }
  }
} 