
 

function sendToLocator (){

	STORESORPLAY = "stores"
	
	var chosen = ""
	var len = document.form2.loctype.length
	for (i = 0; i <len; i++) {
		if (document.form2.loctype[i].checked) {
			chosen = document.form2.loctype[i].value
		}
	}
	if (chosen != "") {
		STORESORPLAY = chosen
	}

	var LOCATIONSEARCH = escape(document.form2.locsearch.value);
	if (LOCATIONSEARCH == "") {
		LOCATIONSEARCH = "Wizards of the Coast"
	}
	
//	var LOCATIONSEARCH = escape("Seattle & WA");
//	var STORESORPLAY = "buy" /// buy or play
	
 	var locationURL = 'http://ww2.wizards.com/StoreAndEventLocator/Default.aspx?link=true&ReturnParamMapZoom=10&ReturnParamMapSearch=' + LOCATIONSEARCH + '&ReturnParamMode=' + STORESORPLAY + '&ReturnParamCheckedProducts=Axis%20%26%20Allies%2CAxis%20%26%20Allies%20Miniatures%3B&ReturnParamCheckedEventBrands=34%3A*%2C32%3A*%2C38%3A*%2C31%3A*%3B' 

 
	
	
	window.open(locationURL,'','');

}


// Store & Event Locator
// - Stores
// - Events
// [____________]
// [Search]


 


