<!--

function makeArray() {
var args = makeArray.arguments;
    for (var i = 0; i < args.length; i++) {
    this[i] = args[i];
    }
this.length = args.length;
}


var pages = new makeArray(" Select a Year  ",
"1949",
"1950",
"1951",
"1952",
"1953",
"1954",
"1955",
"1956",
"1957",
"1958",
"1959",
"1960",
"1961",
"1962",
"1963",
"1964",
"1965",
"1966",
"1967",
"1968",
"1969",
"1970",
"1971",
"1972",
"1973",
"1974",
"1975",
"1976",
"1977",
"1978",
"1979",
"1980",
"1981",
"1982",
"1983",
"1984",
"1985",
"1986",
"1987",
"1988",
"1989",
"1990",
"1991",
"1992",
"1993",
"1994",
"1995",
"1996",
"1997",
"1998",
"1999",
"2000",
"2001",
"2002");

var urls = new makeArray("",
"/2003/history/champions/1949_m_bauer.html",
"/2003/history/champions/1950_p_lesser.html",
"/2003/history/champions/1951_a_brooks.html",
"/2003/history/champions/1952_m_wright.html",
"/2003/history/champions/1953_m_meyerson.html",
"/2003/history/champions/1954_m_smith.html",
"/2003/history/champions/1955_c_kabler.html",
"/2003/history/champions/1956_j_gunderson.html",
"/2003/history/champions/1957_j_eller.html",
"/2003/history/champions/1958_j_eller.html",
"/2003/history/champions/1959_j_rand.html",
"/2003/history/champions/1960_c_sorenson.html",
"/2003/history/champions/1961_m_lowel.html",
"/2003/history/champions/1962_m_daniel.html",
"/2003/history/champions/1963_j_ferraris.html",
"/2003/history/champions/1964_p_conley.html",
"/2003/history/champions/1965_g_sykes.html",
"/2003/history/champions/1966_c_mayhew.html",
"/2003/history/champions/1967_e_story.html",
"/2003/history/champions/1968_m_harmon.html",
"/2003/history/champions/1969_h_stacey.html",
"/2003/history/champions/1970_h_stacey.html",
"/2003/history/champions/1971_h_stacey.html",
"/2003/history/champions/1972_n_lopez.html",
"/2003/history/champions/1973_a_alcott.html",
"/2003/history/champions/1974_n_lopez.html",
"/2003/history/champions/1975_d_benson.html",
"/2003/history/champions/1976_p_dorado.html",
"/2003/history/champions/1977_a_tome.html",
"/2003/history/champions/1978_l_castillo.html",
"/2003/history/champions/1979_p_hammel.html",
"/2003/history/champions/1980_l_rinker.html",
"/2003/history/champions/1981_k_cornelius.html",
"/2003/history/champions/1982_h_farr.html",
"/2003/history/champions/1983_k_saiki.html",
"/2003/history/champions/1984_c_mockett.html",
"/2003/history/champions/1985_d_lofland.html",
"/2003/history/champions/1986_p_hurst.html",
"/2003/history/champions/1987_m_mcgann.html",
"/2003/history/champions/1988_j_jose.html",
"/2003/history/champions/1989_b_burton.html",
"/2003/history/champions/1990_s_mendiburu.html",
"/2003/history/champions/1991_e_klein.html",
"/2003/history/champions/1992_j_koizumi.html",
"/2003/history/champions/1993_k_booth.html",
"/2003/history/champions/1994_k_kuehne.html",
"/2003/history/champions/1995_m_newton.html",
"/2003/history/champions/1996_d_delasin.html",
"/2003/history/champions/1997_b_bauer.html",
"/2003/history/champions/1998_l_hardin.html",
"/2003/history/champions/1999_a_wongluekiet.html",
"/2003/history/champions/2000_L_Ferrero.html",
"/2003/history/champions/2001_n_perrot.html",
"/2003/history/champions/2002_i_park.html");



function goPage(form) {
i = form.menu.selectedIndex;            
    if (i != 0) {
    parent.window.location.href = urls[i];  
    }
}

//-->

