<!--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 8",
                        "Saturday, June 9",
                        "Sunday, June 10",
                        "Monday, June 11",
                        "Tuesday, June 12",
                        "Wednesday, June 13",
                        "Thursday, June 14",
                        "Friday, June 15",
                        "Saturday, June 16"
                        );
var url = new MakeArray("",
			"../june08/index.htm",
			"../june09/index.htm",
			"../june10/index.htm",
			"../june11/index.htm",
			"../june12/index.htm",
			"../june13/index.htm",
			"../june14/index.htm",
			"../june15/index.htm",
			"../june16/index.htm"
			);

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

