
var Indice 	= 0;
var NFoto 	= 0;

var Foto 	= new Array();
var Dato 	= new Array();
var Testo 	= new Array();


Foto[NFoto] = "pag05/foto01.jpg";
Testo[NFoto++] = "1) AREZZO (Casale Radicata) is easily accessible by highway from Milan, Rome, Florence ...";

Foto[NFoto] = "pag05/foto02.jpg";
Testo[NFoto++] = "2) Coming from Florence or Rome just take the A1 motorway to Arezzo ...";

Foto[NFoto] = "pag05/foto03.jpg";
Testo[NFoto++] = "3) Leaving the gate Arezzo, go toward Arezzo, without entering the city, and using the ring "+ 
"SS73 go towards SanSepolcro ...";

Foto[NFoto] = "pag05/foto04.jpg";
Testo[NFoto++] = "4) After 12 Km reach Palazzo del Pero: leave the stretch of highway at Palazzo del Pero ...";

Foto[NFoto] = "pag05/foto05.jpg";
Testo[NFoto++] = "5) Turn left at the old asphalt road and after 1 km pass under the viaduct and again "+ 
"... Left to go up an unmade road (1.5 km) and ...";

Foto[NFoto] = "pag05/foto07.jpg";
Testo[NFoto++] = "6) ... we finally arrived: 43° 26' 45'' N , 11° 58' 22'' E";

Foto[NFoto] = "pag05/foto08.jpg";
Testo[NFoto++] = "7)It is Casale Radicata ... 43° 26' 45'' N , 11° 58' 22'' E";


var Totale = Foto.length;

function Visualizza(Prossimo) 
{
   
  document.foto.src = Foto[Prossimo];
  document.Finestra.testo_foto.value=Testo[Prossimo];
  
}

function Precedente() 
{
  Indice--;
  if(Indice<0) Indice = Totale - 1;
  Visualizza(Indice);
}

function Successivo() 
{
  Indice++;
  if (Indice>=Totale) Indice = 0;
  Visualizza(Indice);
}
// -->

