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

function lookup01(inputString01) {
	if(inputString01.length == 0) {
		// Hide the suggestion box.
		$('#suggestions01').hide();
		// vide l'id
		$('#inputString01id').val('0');
	} else {
		$.post("/modules/ouvacedechet/public/rpc01.php", {queryString: ""+inputString01+""}, function(data){
			if(data.length >0) {
				$('#suggestions01').show();
				$('#autoSuggestionsList01').html(data);
			}
		});
	}
} // lookup

function fill01(valeurnom) {
	$('#labelRechercheD').val(valeurnom);
	setTimeout("$('#suggestions01').hide();", 200);
}
