// JavaScript Document

function lookup(inputString) {
	if(inputString.length <= 2) {
		// Hide the suggestion box.
		$j('#suggestions').hide();
	} else {
		$j.post("../arquivos/autocomplete.php", {queryString: ""+inputString+""}, function(data){
		if(data.length >=3) {
			$j('#suggestions').show();
			$j('#autoSuggestionsList').html(data);
		}
	});
}
} // lookup
        
function fill(thisValue) {
	$j('#inputString').val(thisValue);
	setTimeout("$j('#suggestions').hide();", 200);
}
