<!--
var lista = new Array();

    lista[0] = new Array("../foto/foto_ven/ftven1.jpg", "Ventotene : Punta Eolo (nord)");
    lista[1] = new Array("../foto/foto_ven/ftven2.jpg", "Ventotene : Punta dell'Arco (sud)");
    lista[2] = new Array("../foto/foto_ven/ftven3.jpg", "Ventotene : Cala Nave e Porto Romano");
    lista[3] = new Array("../foto/foto_ven/ftven4.jpg", "Ventotene : il paese");
    lista[4] = new Array("../foto/foto_ven/ftven5.jpg", "Ventotene al tramonto");
    lista[5] = new Array("../foto/foto_ven/ftsubven6.jpg", "Ventotene : relitto del S. Lucia");
    lista[6] = new Array("../foto/foto_ven/ftsubven7.jpg", "Ventotene : relitto del S. Lucia");
    lista[7] = new Array("../foto/foto_ven/ftsubven8.jpg", "Ventotene : relitto del S. Lucia");
    lista[8] = new Array("../foto/foto_ven/ftste1.jpg", "S. Stefano : vista aerea");
    lista[9] = new Array("../foto/foto_ven/ftste2.jpg", "S. Stefano : penitenziario");
    lista[10] = new Array("../foto/foto_ven/ftsubste3.jpg", "S. Stefano : macro Spirografo Spallanzani");
    lista[11] = new Array("../foto/foto_ven/ftsubste4.jpg", "S. Stefano : uova di gattuccio su gorgonia");

var i = 0;

function calind(ind) { var indstring = ind.substring(ind.indexOf("i") + 1, ind.length);
                       ind = parseInt(indstring);
                       return ind;
}

function checkfoto(ind) { i = calind(ind);
                          document.imgbase.src = lista[i][0];
                          document.imgbase.alt = lista[i][1];
                          document.getElementById("descr").innerText = lista[i][1];
                          
}
// -->
