<!----- 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 about()
{
alert("      About for Spikeman\'s JavaScript Presidential Finder \n\n This Was Made To help people who needed \n       to know what # was what a President was!! ");
alert("\n   Spikeman\'s JavaScript Presidential Finder\n\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 initArray(){
// 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 = 43
// Now that we have defined the size of the array, we need
// to fill each location with data.
this[0] = "George Washington (1789-1797)"
this[1] = "John Adams (1797-1801)"
this[2] = "Thomas Jefferson (1801-1809)"
this[3] = "James Madison (1809-1817)"
this[4] = "James Monroe (1817-1825)"
this[5] = "John Quincy Adams (1825-1829)"
this[6] = "Andrew Jackson (1829-1837)"
this[7] = "Martin Van Buren (1837-1841)"
this[8] = "William Henry Harrison (1841)"
this[9] = "John Tyler (1841-1845)"
this[10] = "James K. Polk (1845-1849)"
this[11] = "Zachary Taylor (1849-1850)"
this[12] = "Millard Fillmore (1850-1853)"
this[13] = "Franklin Pierce (1853-1857)"
this[14] = "James Buchanan (1857-1861)"
this[15] = "Abraham Lincoln (1861-1865)"
this[16] = "Andrew Johnson (1865-1869)"
this[17] = "Ulysses S. Grant (1869-1877)"
this[18] = "Rutherford B. Hayes (1877-1881)"
this[19] = "James A. Garfield (1881)"
this[20] = "Chester A. Arthur (1881-1885)"
this[21] = "Grover Cleveland (1885-1889)"
this[22] = "Benjamin Harrison (1889-1893)"
this[23] = "Grover Cleveland (1893-1897)"
this[24] = "William McKinley (1897-1901) "
this[25] = "Theodore Roosevelt (1901-1909)"
this[26] = "William H. Taft (1909-1913)"
this[27] = "Woodrow Wilson (1913-1921)"
this[28] = "Warren G. Harding (1921-1923)"
this[29] = "Calvin Coolidge (1923-1929)"
this[30] = "Herbert Hoover (1929-1933)"
this[31] = "Franklin D. Roosevelt (1933-1945)"
this[32] = "Harry S. Truman (1945-1953)"
this[33] = "Dwight D. Eisenhower (1953-1961)"
this[34] = "John F. Kennedy (1961-1963)"
this[35] = "Lyndon B. Johnson (1963-1969)"
this[36] = "Richard M. Nixon (1969-1974)"
this[37] = "Gerald R. Ford (1974-1977)"
this[38] = "Jimmy Carter (1977-1981)"
this[39] = "Ronald Reagan (1981-1989)"
this[40] = "George Bush Sr. (1989-1993)"
this[41] = "Bill Clinton (1993-2001)"
this[42] = "George Bush Jr. (2001-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 presidents = new initArray()