<!--

//  Inizio
var link_ = new Array();
var num = new Array();
link_[0] = 'www.favignana.com/pacchetti_turistici.html" target="_self,Pacchetti Turistici'; 
link_[1] = 'www.favignana.com/tour_isole_egadi.html" target="_self,Escursioni';
link_[2] = 'www.favignana.com/offerte_vantaggiose.html" target="_self,Offerte Vantaggiose';



var num_link = 3;
var num_link_visti = 1;

for (i=0; i<num_link_visti; i++){
   num[i] = Math.round(Math.abs(Math.random()*1000000)) % num_link; 
      for (k=0; k<i; k++){if (num[i] == num[k]){i--; k=i;}}
     }


function Link_vai(){
for (i=0; i<num_link_visti; i++){
link_corrente = link_[num[i]].split(",");
document.write('<a href="http://' + link_corrente[0] + '"> ' + link_corrente[1] + '</a><br>');
}
}

<!--
Link_vai();
//-->


// fine 

