<!----- Script CopyRight ©  1997  S.Chris Brown (Spikeman)   http://www.geocities.com/BourbonStreet/3843-->
/********************************************************
**       S.Christopher Brown's (Spikeman)'s            **
**        java script Presidential Finder              **
**    CopyRight © 1997 S.Chris Brown (Spikeman)        **
**                spikeman@myself.com                  **
**   http://www.geocities.com/BourbonStreet/3843       **
**            All Rights Reserved                      **
**  You can freely use  this script, if this credit is **
**                given in the source.                 **
**                  Thank you                          ** 
********************************************************/ 
// This JavaScript code Originally by S.Chris Brown  (Spikeman) 1997 ( http://www.geocities.com/BourbonStreet/3843 )    
function about2()
{
alert(" Questo trovatore è stato creato da Spikeman e modificato da disteland.com. \n E' utile per sapere chi è stato Presidente della Repubblica Italiana. \n \n Inserendo un numero # (1 per il primo Presidente, 2 per il secondo, ecc.) \n si può sapere il Presidente corrispondente.");
alert("\n                   © 1997 Spikeman  \n                 Spikeman@myself.com\nhttp://www.geocities.com/BourbonStreet/3843")
}
// The initArray is used for initializing an array. It
// defines the array's size, and  then fills it with data.
function initArray2(){
// As with all custom arrays, we need to define the size of
// the array. WE do this by setting the length property of the
// array to the integer value of the array's size. In our
// case, the size of the array is 42.
this.length = 11
// Now that we have defined the size of the array, we need
// to fill each location with data.
this[0] = "Enrico De Nicola (1946-1948)"
this[1] = "Luigi Einaudi (1948-1955)"
this[2] = "Giovanni Gronchi (1955-1962)"
this[3] = "Antonio Segni (1962-1964)"
this[4] = "Giuseppe Saragat (1964-1971)"
this[5] = "Giovanni Leone (1971-1978)"
this[6] = "Sandro Pertini (1978-1985)"
this[7] = "Francesco Cossiga (1985-1992)"
this[8] = "Oscar Luigi Scalfaro (1992-1999)"
this[9] = "Carlo Azeglio Ciampi (1999-2006)"
this[10] = "Giorgio Napolitano (2006-presente)"
}
// After finishing the function that will initialize an
// array, we now need to actually create an array. We will
// call our array presidents. To create the new array, we
// just apply the initArray() function against our variable,
// and, using the new statement, this will work.
var presidents2 = new initArray2()