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("0",
                            "1",
                            "2",
                            "3",
                            "4",
                            "5",
                            "6",
                            "7",
                            "8",
                            "9",
                            "10",
                            "11",
                            "12",
                            "13",
                            "14",
                            "15",							
							"16");
var url = new MakeArray("#",
						"Store_Location002.htm",
						"Store_Location001.htm",
						"Store_Location010.htm",
						"Store_Location014.htm",
						"Store_Location003.htm",
                        "Store_Location004.htm",
                        "Store_Location016.htm",						
                        "Store_Location005.htm",
						"Store_Location013.htm",
						"Store_Location015.htm",
						"Store_Location006.htm",
                        "Store_Location007.htm",
                        "Store_Location008.htm",
                        "Store_Location011.htm",
                        "Store_Location012.htm",						
                        "Store_Location009.htm");
function jumpPage(form) {
        i = form.SelectMenu.selectedIndex;
        if (i == 0) return;
        window.location.href = url[i+1];
}