	function lookup(inputString) {
		if(inputString.length == 0) {
			// Hide the suggestion box.
			$('#suggestions').hide();
		} else {
			$.post(html_root_url_js + "include/js_suggest/sugg_backend.php", {queryString: ""+inputString+""}, function(data){
				if(data.length >0) {
					$('#suggestions').show("slow");
					$('#autoSuggestionsList').html(data);
				}
			});
		}
	} // lookup
	
	function fill(thisValue) {
		$('#inputStringLarge').val(thisValue);
		setTimeout("$('#suggestions').hide();", 200);
	}
