// Recherche par nom
function selectItem(li) {
	if (li.extra) {
		if(li.extra[0]=="Affiche Resultat"||li.extra[0]=="NombreTotal"){
			if(li.extra[1]!=0){
				var v = $("#Search").val();
				document.location.href = "aep-2100.php?Search="+v;
			}
		}else{
			v = li.extra[2]; v2 = li.extra[4];
			document.location.href = "/entreprise/"+v+"/"+v2+"/";
		}
	}
}
function formatItem(row) {
	if(row[0]=="Affiche Resultat"){
    if(row[1]>1) Pluriel="s"; else Pluriel="";
		if(row[1]=="0")
			return "<div id='NbResult'><strong>R&eacute;sultats :</strong> <u>Aucune entreprise correspondante</u></div>";
		else
			return "<div id='NbResult'><strong>R&eacute;sultat"+Pluriel+" :</strong> <u>"+row[1]+" entreprise"+Pluriel+" correspondante"+Pluriel+"</u></div>";
	}else if(row[0]=="NombreTotal") {
		return "<div class='allresult2'></div><div id='AllResult'>Voir tous les r&eacute;sultats (<strong>"+row[1]+"</strong>) &raquo;</div>";
	}else {
		var m="";
		m+="<strong><img src='images/flc.gif' alt='' /> "+row[0]+"</strong>";//&bull;
		m+="<em>("+row[1]+")</em>";
		if(row[3]=="true") m+="<strong style='font-size:10px;color:red;font-variant:small-caps'>Adh&eacute;rent</strong>";
		return m;
	}
}

// Recherche par mot clé
function selectItem2(li) {
	if (li.extra) {
		if(li.extra[0]=="Affiche Resultat"||li.extra[0]=="NombreTotal"){
			if(li.extra[1]!=0){
				var v = $("#Search2").val();
				document.location.href = "aep-2100.php?Search2="+v;
			}
		}else{
			v = li.extra[2]; v2 = li.extra[4];
			document.location.href = "/entreprise/"+v+"/"+v2+"/";
		}
	}
}
function formatItem2(row) {
	if(row[0]=="Affiche Resultat"){
    if(row[1]>1) Pluriel="s"; else Pluriel="";
		if(row[1]=="0")
			return "<div id='NbResult'><strong>R&eacute;sultats :</strong> <u>Aucune entreprise correspondante</u></div>";
		else
			return "<div id='NbResult'><strong>R&eacute;sultat"+Pluriel+" :</strong> <u>"+row[1]+" entreprise"+Pluriel+" correspondante"+Pluriel+"</u></div>";
	}else if(row[0]=="NombreTotal"){
    if(row[1]>1) Pluriel="s"; else Pluriel="";
		return "<div class='allresult2'></div><div id='AllResult'>R&eacute;sultat"+Pluriel+" pour <strong>"+$("#Search2").val()+"</strong> (<strong>"+row[1]+"</strong>)</div>";
	}else{
		var m="";
		m+="<strong><img src='images/flc.gif' alt='' /> "+row[0]+"</strong>";//&bull;
		m+="<em>("+row[1]+")</em>";
		if(row[3]=="true") m+="<strong style='font-size:10px;color:red;font-variant:small-caps'>Adh&eacute;rent</strong>";
		return m;
	}
}
$(document).ready(function() {
	$("#Search").autocomplete("annu-search.php?mode=1", { minChars:3, matchSubset:0, matchContains:0, cacheLength:0, onItemSelect:selectItem, formatItem:formatItem, selectOnly:1 });
	$("#Search2").autocomplete("annu-search.php?mode=2", { minChars:3, matchSubset:0, matchContains:0, cacheLength:0, onItemSelect:selectItem2, formatItem:formatItem2, selectOnly:1 });
});

