// JavaScript Document
function lookup2(inputString) {
	if(inputString.length == 0) {
		// Hide the suggestion box.
		$('#suggestions2').hide();
	} else {
		$.post("php/rpc_arquitectes.php", {queryString: ""+inputString+""}, function(data){
			if(data.length >0) {
				$('#suggestions2').show();
				$('#autoSuggestionsList2').html(data);
			}
		});
	}
} // lookup

function fill2(thisValue) {
	$('#inputString2').val(thisValue);
	setTimeout("$('#suggestions2').hide();", 200);
	if(document.getElementById('inputString2').value.indexOf('id=',0)!==-1) document.getElementById('form_busqueda2').submit();
}

