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;Abiquiu",
						"&nbsp;Alamogordo",
						"&nbsp;Albuquerque",
						"&nbsp;Anthony",
						"&nbsp;Artesia",
						"&nbsp;Belen",
						"&nbsp;Bloomfield",
						"&nbsp;Bosque Farms",
						"&nbsp;Carlsbad",
						"&nbsp;Carrizozo",
						"&nbsp;Chama",
						"&nbsp;Chimayo",
						"&nbsp;Clayton",
						"&nbsp;Clovis",						
						"&nbsp;Deming",
						"&nbsp;Espanola",
						"&nbsp;Farmington",
						"&nbsp;Gallup",
						"&nbsp;Grants",
						"&nbsp;Hobbs",
						"&nbsp;Las Cruces",
						"&nbsp;Las Vegas",
						"&nbsp;Lincoln",
						"&nbsp;Lordsburg",
						"&nbsp;Los Alamos",
						"&nbsp;Los Lunas",
						"&nbsp;Lovington",
						"&nbsp;Portales",
						"&nbsp;Raton",
						"&nbsp;Rio Rancho",
						"&nbsp;Roswell",
						"&nbsp;Santa Fe",
						"&nbsp;Santa Rosa",
						"&nbsp;Shiprock",
						"&nbsp;Silver City",
						"&nbsp;Socorro",
						"&nbsp;South Valley",
						"&nbsp;Taos",
						"&nbsp;Truth or Consequences",
						"&nbsp;Tucumcari",
						"&nbsp;White Rock");
var url = new MakeArray("",
					"http://new-mexico.citycreate.com/abiquiu",
					"http://new-mexico.citycreate.com/alamogordo",
					"http://new-mexico.citycreate.com/albuquerque",
					"http://new-mexico.citycreate.com/anthony",
					"http://new-mexico.citycreate.com/artesia",
					"http://new-mexico.citycreate.com/belen",
					"http://new-mexico.citycreate.com/bloomfield",
					"http://new-mexico.citycreate.com/bosque-farms",
					"http://new-mexico.citycreate.com/carlsbad",
					"http://new-mexico.citycreate.com/carrizozo",
					"http://new-mexico.citycreate.com/chama",
					"http://new-mexico.citycreate.com/chimayo",
					"http://new-mexico.citycreate.com/clayton",
					"http://new-mexico.citycreate.com/clovis",
					"http://new-mexico.citycreate.com/deming",
					"http://new-mexico.citycreate.com/espanola",
					"http://new-mexico.citycreate.com/farmington",
					"http://new-mexico.citycreate.com/gallup",
					"http://new-mexico.citycreate.com/grants",
					"http://new-mexico.citycreate.com/hobbs",
					"http://new-mexico.citycreate.com/las-cruces",
					"http://new-mexico.citycreate.com/las-vegas",
					"http://new-mexico.citycreate.com/lincoln",
					"http://new-mexico.citycreate.com/lordsburg",
					"http://new-mexico.citycreate.com/los-alamos",
					"http://new-mexico.citycreate.com/los-lunas",
					"http://new-mexico.citycreate.com/lovington",
					"http://new-mexico.citycreate.com/portales",
					"http://new-mexico.citycreate.com/raton",
					"http://new-mexico.citycreate.com/rio-rancho",
					"http://new-mexico.citycreate.com/roswell",
					"http://new-mexico.citycreate.com/santa-fe",
					"http://new-mexico.citycreate.com/santa-rosa",
					"http://new-mexico.citycreate.com/shiprock",
					"http://new-mexico.citycreate.com/silver-city",
					"http://new-mexico.citycreate.com/socorro",
					"http://new-mexico.citycreate.com/south-valley",
					"http://new-mexico.citycreate.com/taos",
					"http://new-mexico.citycreate.com/truth-or-consequences",
					"http://new-mexico.citycreate.com/tucumcari",
					"http://new-mexico.citycreate.com/white-rock");
function jumpPage(form)
 {

        i = form.SelectMenu.selectedIndex;

        if (i == 0) return;

        window.location.href = url[i+1];

}
