	function lookup(inputString,Land) {
		if(inputString.length == 0) {
			// Hide the suggestion box.
			$('#suggestions').hide();
		} else {
			$.post("/rpc.php", {queryString: ""+inputString+"", Land: ""+Land+""}, function(data){
				if(data.length >0) {
					$('#suggestions').show();
					$('#autoSuggestionsList').html(data);
				}
			});
		}
	} // lookup


	function fill(thisValue) {
		$('#inputString').val(thisValue);
		setTimeout("$('#suggestions').hide();", 200);
	}


	function Look(inputString,Plaats,Land) {
		if(inputString.length == 0) {
			// Hide the suggestion box.
			$('#suggestions2').hide();
		} else {
			$.post("/rpc-straat.php", {queryString: ""+inputString+"", Plaats: ""+Plaats+"", Land: ""+Land+""}, function(data){
				if(data.length >0) {
					$('#suggestions2').show();
					$('#autoSuggestionsList2').html(data);
				}
			});
		}
	} // lookup


	function fill2(thisValue) {
		$('#StraatNaam').val(thisValue);
		setTimeout("$('#suggestions2').hide();", 200);
	}