// JavaScript Functions for Flash Elements
// Nav search
function doNavSearch(terms) {
	window.location = appURL + "/search_results.asp?q1=" + terms;
}
// Retail Locator search
function doRetailSearch(terms) {
// Search code
	window.location = appURL + "/retail/index.asp?getresults=Y&oa=&oc=&os=&oz=" + terms + "&radius=100&ocountry=US"
}
// Header button links
function flashLearnMore(id) {
	switch (id) {
		//
		case "Drivers":
		window.location = appURL + "/product_detail.asp?pID=11"
		break;
		//
		case "Fairways":
		window.location = appURL + "/product_detail.asp?pID=18"
		break;
		//
		case "Utilities":
		window.location = appURL + "/product_detail.asp?pID=21"
		break;
		//
		case "Irons":
		window.location = appURL + "/product_detail.asp?pID=24"
		break;
		//
		case "Wedges":
		window.location = appURL + "/product_detail.asp?pID=28"
		break;
		//
		case "Putters":
		window.location = appURL + "/product_detail.asp?pID=30"
		break;
		//
		case "Womens":
		window.location = appURL + "/product_detail.asp?pID=36"
		break;
		//
		case "Accessories":
		window.location = appURL + "/accessory_detail.asp?catID=32"
		break;
		//
		case "Fairways Euro":
		window.location = appURL + "/product_detail.asp?pID=41"
		break;
		//
		default:
		break;
	}
}

