// for example view http://www.nodstrum.com/2007/09/19/autocompleter/

function lookup(inputString,table,column,id) {
	if(inputString.length == 0) {
		// Hide the suggestion box.
		$('#suggestions').hide();
	} else {
		$.post("/index.php?route=tool/autoComplater", 
		{queryString: ""+inputString+"", table:""+table+"",column:""+column+"",id: ""+id+""}, function(data){
			if(data.length >0) {
				$('#suggestions').show();
				$('#autoSuggestionsList').html(data);
			}
		});
	}
} // lookup
	
function fill(thisValue,id) {
	$('#'+id).val(thisValue);
	setTimeout("$('#suggestions').hide();", 200);
}

