function lanceMnogoSearchQuery() {
	var query='';
	var indGamme=document.rechDirecte.rechGamme.selectedIndex;
	var indSupport=document.rechDirecte.rechSupport.selectedIndex;
	if (indGamme>0) query='rechGamme'+document.rechDirecte.rechGamme.options[indGamme].value+' ';
	if (indSupport>0) query+='rechSupport'+document.rechDirecte.rechSupport.options[indSupport].value+' ';
	if (document.rechDirecte.rechReference.value!='') {
		query+=(document.rechDirecte.rechReference.value+' rechRef');
	}
	document.rechDirecte.q.value=query;
	if (window.external)
		window.external.AutoCompleteSaveForm(document.forms['rechDirecte']);
	document.rechDirecte.submit();
}

function lanceMnogoSearchQuerySite() {
	var query='';
	if (document.rechSite.keywords.value!='') query+=document.rechSite.keywords.value;
	document.rechSite.q.value=query;
	if (window.external)
		window.external.AutoCompleteSaveForm(document.forms['rechSite']);
	document.rechSite.submit();
}

