<!--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 7",                        "Saturday, June 8",                        "Sunday, June 9",                        "Monday, June 10",                        "Tuesday, June 11",                        "Wednesday, June 12",                        "Thursday, June 13",                        "Friday, June 14, page 1",                        "Friday, June 14, page 2",                        "Saturday, June 15"                        );var url = new MakeArray("",			"p07.html",			"p08.html",			"p09.html",			"p10.html",			"p11.html",			"p12.html",			"p13.html",			"p14a.html",			"p14b.html",			"p15.html"			);function jumpPage(form){        i = form.SelectMenu.selectedIndex;        if (i == 0) return;        window.location.href = url[i+1];}//end of "hidden" code-->