			<!--
			function findValue(li) {
			 	if( li != null ) {
					sValue = (!!li.extra ? li.extra[0] : li.selectValue);
					if (document.getElementById('searchString').value == sValue) {
						document.getElementById('formRecherche').submit();
					}
					else{
						document.getElementById('formRecherche2').submit();
					}
				}
			}
			function selectItem(li) {
				findValue(li);
			}
			function formatItem(row) {
				return row;
			}
			$(document).ready(function() {
			$("#searchString").autocomplete(
				SERVER_ROOT+"rechercheFormAjax.php",
				{
					delay:500,
					minChars:2,
					matchSubset:1,
					matchContains:0,
					cacheLength:50,
					maxItemsToShow:10,
					onItemSelect:selectItem,
					onFindValue:findValue,
					formatItem:formatItem,
					autoFill:false
				}
			);
			$("#searchString2").autocomplete(
				SERVER_ROOT+"rechercheFormAjax.php",
				{
					delay:500,
					minChars:2,
					matchSubset:1,
					matchContains:0,
					cacheLength:50,
					maxItemsToShow:10,
					onItemSelect:selectItem,
					onFindValue:findValue,
					formatItem:formatItem,
					autoFill:false
				}
			);
			});
			//-->

