/*
NETTuno link per aprire in una nuova finestra con xhtml 1.0 strict o 1.1
*/
onload=function(){
if(!document.getElementsByTagName) return;
l=document.getElementsByTagName("a");
for(i=0;i<l.length;i++){
  if(l[i].className.indexOf("blank")!=-1){
    
  	l[i].title="Link esterno, si apre in una nuova finestra: " + l[i].title; 
    l[i].onclick=function(){window.open(this.href);return(false)};
    }
  }
}
