function lookup(inputString) {
	$('#wrapdate').removeClass('layerdate');
	if(inputString.length == 0 || inputString.length < 2) {
		// Hide the suggestion box.
		$('#suggestions').hide();
	} else {
		$.post("web-base/eqbv.html?rd.fx=0;sess=<?=$this->functions->makeSessId();?>&sessqid=<?=$this->functions->random_number();?>", {queryString: ""+inputString+""}, function(dataresult){
			if(dataresult.length > 0 && inputString.length > 2) {
				$('#suggestions').show();
				if(dataresult.length <= 2){
					$('#autoSuggestionsList').html('<li>Location not found.</li>');
				}else{
					$('#autoSuggestionsList').html(dataresult);
				}	
			}			
		});
	}
} // lookup

function fill(thisValue) {
	$('#searchfield').val(thisValue);
	setTimeout("$('#suggestions').hide();", 100);
	$('#wrapdate').addClass('layerdate');
}
