	function lookupPhone(inputStringPhone) {
		if(inputStringPhone.length == 0) {
			// Hide the suggestion box.
			$('#suggestionsPhone').hide();
		} else {
			$.post("includes/module/auto_complete/rpc-phone.php", {queryString: ""+inputStringPhone+""}, function(data){
				if(data.length >0) {
					$('#suggestionsPhone').show();
					$('#autoSuggestionsListPhone').html(data);
				}
			});
		}
	} // lookup
	
	function fillPhone(thisValue) {
		$('#inputStringPhone').val(thisValue);
		setTimeout("$('#suggestionsPhone').hide();", 200);
	}