<!--

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 President",
"Average (1897 - present)",
"Clinton (2nd term)",
"Clinton (1st term)",
"Bush",
"Reagan (2nd term)",
"Reagan (1st term)",
"Carter",
"Nixon (2nd term) / Ford",
"Nixon (1st term)",
"Johnson",
"Kennedy / Johnson",
"Eisenhower (2nd term)",
"Eisenhower (1st term)",
"Truman",
"Roosevelt (4th term) / Truman",
"Roosevelt (3rd term)",
"Roosevelt (2nd term)",
"Roosevelt (1st term)",
"Hoover",
"Coolidge",
"Harding / Coolidge",
"Wilson (2nd term)",
"Wilson (1st term)",
"Taft",
"T. Roosevelt",
"McKinley (2nd term) / T. Roosevelt",
"McKinley (1st term)");

var urls = new makeArray("",
"/prescyc-m.htm",
"/prescyc-clinton2.htm",
"/prescyc-clinton1.htm",
"/prescyc-bush.htm",
"/prescyc-reagan2.htm",
"/prescyc-reagan1.htm",
"/prescyc-carter.htm",
"/prescyc-nixon2ford.htm",
"/prescyc-nixon1.htm",
"/prescyc-johnson.htm",
"/prescyc-kennedyjohnson.htm",
"/prescyc-eisenhower2.htm",
"/prescyc-eisenhower1.htm",
"/prescyc-truman.htm",
"/prescyc-fdr4truman.htm",
"/prescyc-fdr3.htm",
"/prescyc-fdr2.htm",
"/prescyc-fdr1.htm",
"/prescyc-hoover.htm",
"/prescyc-coolidge.htm",
"/prescyc-hardingcoolidge.htm",
"/prescyc-wilson2.htm",
"/prescyc-wilson1.htm",
"/prescyc-taft.htm",
"/prescyc-troosevelt.htm",
"/prescyc-mckinley2troosevelt.htm",
"/prescyc-mckinley1.htm");

function goPage(form) {
i = form.menu.selectedIndex;            
    if (i != 0) {
    window.location.href = urls[i];  
    }
}

//-->
