
function lookup(inputString) { 
		if(inputString.length == 0) {
			// Hide the suggestion box.
			$('#suggestions').hide();
		} else {
			$.post("/oschti/autoComplete/rpc.php", {queryString: ""+inputString+""}, function(data){
				if(data.length >0) {
					$('#suggestions').show();
					$('#autoSuggestionsList').html(data);
				}
			});
		} 
	} // lookup
	
	function fill(thisValue) { 
		if(typeof thisValue!='undefined') {
		//if (thisValue !== '') {  
		window.location = thisValue 
		}
		//$('#inputString').val(thisValue);
		setTimeout("$('#suggestions').hide();", 200);
	}

