function lookup(Tsearch) { 
	if(Tsearch.length == 0) {
		// Hide the suggestion box.
		$('#suggestions').hide();
	} else {
		// post data to our php processing page and if there is a return greater than zero
		// show the suggestions box
		$.post("Product_Suggessions.php", {mysearchString: ""+Tsearch+""}, function(data){
			if(data.length >0) {
				$('#suggestions').show();
				$('#autoSuggestionsList').html(data);
			}
		});
	}
} //end

// if user clicks a suggestion, fill the text box.
function fill(thisValue) {
	$('#Tsearch').val(thisValue);
	setTimeout("$('#suggestions').hide();", 200);
	//$.post("string_search.php", {Tword: ""+inputString+""});
}
