<!--hide code from JAVA-challenged browsers
/* This code is Copyright (c) 1996 Nick Heinle and Athenia Associates, 
 * all rights reserved. In order to receive the right to license this 
 * code for use on your site the original code must be copied from the
 * Web site webreference.com/javascript/. License is granted to user to 
 * reuse this code on their own Web site if and only if this entire copyright
 * notice is included. Code written by Nick Heinle of webreference.com.
 */

function MakeArray()
        {
        this.length = MakeArray.arguments.length
        for (var i = 0; i < this.length; i++)
        this[i+1] = MakeArray.arguments[i]
        }

var siteopt = new MakeArray("Select a Day...",
                        "Friday, June 9",
                        "Saturday, June 10",
                        "Sunday, June 11",
                        "Monday, June 12",
                        "Tuesday, June 13",
                        "Wednesday, June 14",
                        "Thursday, June 15",
                        "Friday, June 16",
                        "Saturday, June 17"
                        );
var url = new MakeArray("",
			"index09.html",
			"index10.html",
			"index11.html",
			"index12.html",
			"index13.html",
			"index14.html",
			"index15.html",
			"index16.html",
			"index17.html"
			);

function jumpPage(form)
{
        i = form.SelectMenu.selectedIndex;
        if (i == 0) return;
        window.location.href = url[i+1];
}
//end of "hidden" code-->
