function lookup(inputString, NameField) {
	if(inputString.length == 0) {
		// Hide the suggestion box.
		$('#suggestions').hide();
	} else {
		$.post("ajax_main.php", {atype: NameField, queryString: ""+inputString+""}, function(data){
			if(data.length > 1) {
				$('#suggestions').show();
				$('#autoSuggestionsList').html(data);
			}
		});
	}
} // lookup

function fill(thisValue, NameField) {
 
	if (thisValue)
	{
		$('#' + NameField).val(thisValue);
	}
	setTimeout("$('#suggestions').hide();", 200);
	// setTimeout("document.form_rech.submit();", 200); 
}