<!--
function driving (titolo_finestra, website, lunghezza, altezza) {

var windowprops='width=1,height=1,scrollbars=yes,status=no,resizable=yes,location=no';
var heightspeed = 20;
var widthspeed = 20; 
var leftdist = 50;   
var topdist = 50; 

if(lunghezza == 0){
lunghezza = window.screen.availWidth;
}
if(altezza == 0){
altezza = window.screen.availHeight;
}

altezza = altezza+30;
lunghezza = lunghezza+30;

if (window.resizeTo&&navigator.userAgent.indexOf("Opera")==-1) {
var winwidth = lunghezza;
var winheight = altezza;
var sizer = window.open("","","left=" + leftdist + ",top=" + topdist +","+ windowprops);
for (sizeheight = 1; sizeheight < winheight; sizeheight += heightspeed)
sizer.resizeTo("1", sizeheight);
for (sizewidth = 1; sizewidth < winwidth; sizewidth += widthspeed)
sizer.resizeTo(sizewidth, sizeheight);
sizer.location = website;
}
else
window.open(website,'mywindow');
}

function redirectOffsiteLinks(){ 
  for(i=0;i<document.links.length;i++){
    hn = document.links[ i ].hostname;
    if(hn!=self.location.hostname && hn.substr(0,7)!="driving" && hn.substr(0,4)!="self")
      document.links[ i ].target="_blank"; 
  }
} 

// -->