// JavaScript Document
//pour les champs d'autocompletion

function lookup02(inputString02) {
	if(inputString02.length == 0) {
		// Hide the suggestion box.
		$('#suggestions02').hide();
		// vide l'id
		$('#inputString02id').val('0');
	} else {
		$.post("/modules/macommune/public/rpc01.php", {queryString: ""+inputString02+""}, function(data){
			if(data.length >0) {
				$('#suggestions02').show();
				$('#autoSuggestionsList02').html(data);
			}
		});
	}
} // lookup

function fill02(valeurnom) {
	$('#labelRechercheC').val(valeurnom);
	setTimeout("$('#suggestions02').hide();", 200);
}

