function search(useSeoFormatter, locale, alertDefault, alertText) {
	if (document.getElementById("search_input").value == alertDefault || document.getElementById("search_input").value == '') {
		alert (alertText);
	} else {
		if(useSeoFormatter) {
			var formStr = document.getElementById("search_input").value;
			var encodedStr = formStr.replace("&", "%26");
			window.location = "/furreal-2/dizzy-dancers/" + locale + "/search/_/Ntt-" + encodeURIComponent(encodedStr) + "?Ntk=All&Ntx=mode+matchallpartial";
		} else {
			window.location = "/furreal-2/dizzy-dancers/" + locale + "/search.cfm?Ntk=All&Ntt=" + encodeURIComponent(document.getElementById("search_input").value) + "&Ntx=mode+matchallpartial";
		}
	}
}
