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("&nbsp;Choose a City",

						"&nbsp;Ada",
						"&nbsp;Altus",
						"&nbsp;Anadarko",
						"&nbsp;Ardmore",
						"&nbsp;Bartlesville",
						"&nbsp;Blackwell",
						"&nbsp;Broken Arrow",
						"&nbsp;Chickasha",
						"&nbsp;Clinton",
						"&nbsp;Duncan",
						"&nbsp;Durant",
						"&nbsp;Edmond",
						"&nbsp;El Reno",
						"&nbsp;Elk City",
						"&nbsp;Enid",
						"&nbsp;Guymon",
						"&nbsp;Henryetta",
						"&nbsp;Holdenville",
						"&nbsp;Hugo",
						"&nbsp;Idabel",
						"&nbsp;Lawton",
						"&nbsp;McAlester",
						"&nbsp;Miami",
						"&nbsp;Midwest City",
						"&nbsp;Muskogee",
						"&nbsp;Mustang",
						"&nbsp;Norman",
						"&nbsp;Oklahoma City",
						"&nbsp;Pauls Valley",
						"&nbsp;Ponca City",
						"&nbsp;Poteau",
						"&nbsp;Pryor",
						"&nbsp;Purcell",
						"&nbsp;Sallisaw",
						"&nbsp;Sapulpa",
						"&nbsp;Shawnee",
						"&nbsp;Skiatook",
						"&nbsp;Stillwater",
						"&nbsp;Tahlequah",
						"&nbsp;Tulsa",
						"&nbsp;Vinita",
						"&nbsp;Weatherford",
						"&nbsp;Woodward",
						"&nbsp;Yukon");
var url = new MakeArray("",
					"http://oklahoma.citycreate.com/ada",
					"http://oklahoma.citycreate.com/altus",
					"http://oklahoma.citycreate.com/anadarko",
					"http://oklahoma.citycreate.com/ardmore",
					"http://oklahoma.citycreate.com/bartlesville",
					"http://oklahoma.citycreate.com/blackwell",
					"http://oklahoma.citycreate.com/broken-arrow",
					"http://oklahoma.citycreate.com/chickasha",
					"http://oklahoma.citycreate.com/clinton",
					"http://oklahoma.citycreate.com/duncan",
					"http://oklahoma.citycreate.com/durant",
					"http://oklahoma.citycreate.com/edmond",
					"http://oklahoma.citycreate.com/el-reno",
					"http://oklahoma.citycreate.com/elk-city",
					"http://oklahoma.citycreate.com/enid",
					"http://oklahoma.citycreate.com/guymon",
					"http://oklahoma.citycreate.com/henryetta",
					"http://oklahoma.citycreate.com/holdenville",
					"http://oklahoma.citycreate.com/hugo",
					"http://oklahoma.citycreate.com/idabel",
					"http://oklahoma.citycreate.com/lawton",
					"http://oklahoma.citycreate.com/mcalester",
					"http://oklahoma.citycreate.com/miami",
					"http://oklahoma.citycreate.com/midwest-city",
					"http://oklahoma.citycreate.com/muskogee",
					"http://oklahoma.citycreate.com/mustang",
					"http://oklahoma.citycreate.com/norman",
					"http://oklahoma.citycreate.com/oklahoma-city",
					"http://oklahoma.citycreate.com/pauls-valley",
					"http://oklahoma.citycreate.com/ponca-city",
					"http://oklahoma.citycreate.com/poteau",
					"http://oklahoma.citycreate.com/pryor",
					"http://oklahoma.citycreate.com/purcell",
					"http://oklahoma.citycreate.com/sallisaw",
					"http://oklahoma.citycreate.com/sapulpa",
					"http://oklahoma.citycreate.com/shawnee",
					"http://oklahoma.citycreate.com/skiatook",
					"http://oklahoma.citycreate.com/stillwater",
					"http://oklahoma.citycreate.com/tahlequah",
					"http://oklahoma.citycreate.com/tulsa",
					"http://oklahoma.citycreate.com/vinita",
					"http://oklahoma.citycreate.com/weatherford",
					"http://oklahoma.citycreate.com/woodward",
					"http://oklahoma.citycreate.com/yukon");
function jumpPage(form)
 {

        i = form.SelectMenu.selectedIndex;

        if (i == 0) return;

        window.location.href = url[i+1];

}
