﻿
var FireKeyPress=true
$(document).ready(function () {
	var isComeFromoverseas = 1
	if ($("input:hidden[id$='hdnCrossPostback']") != null) {
		isComeFromoverseas = $("input:hidden[id$='hdnCrossPostback']").val()
	}
	var type = "1"
	if (location.href.toLowerCase().indexOf("overseas.aspx") != -1 || isComeFromoverseas == 2)
		type = "2";
	var url = $("input:hidden[id$='hdnSiteUrl']").val() + "/AutoFill.ashx?type=" + type;
	$("input:text[id$='szLocation']").autocomplete(
					url, {
						delay: 150,
						minChars: 2,
						matchSubset: 0,
						matchContains: 0,
						cacheLength: 20,
						autoFill: false,
						width: 400,
						selectFirst: false,
						max: 20,
						maxItemsToShow: 20
					}
				);


$("input:text[id$='szLocation']").result(function (event, data, formatted) {


	var SelectedValue = data.toString().replace(formatted + ",", "");
	$("input:hidden[id$='hdnSearch']").val(SelectedValue)

	FireKeyPress = false

});


$("input:text[id$='szLocation']").keypress(function () {
	if (FireKeyPress == true) {
		$("input:hidden[id$='hdnSearch']").val('')
		$("input:hidden[id$='hdnSearchedWord']").val('')
	}
});

});
