function valida_ricerca() {
	txtRicerca=document.getElementById('autoCompleteTextField')				
	if(txtRicerca.value=='') {
		alert("Attenzione!!\nInserire un testo valido da ricercare.");
		txtRicerca.value='';
		txtRicerca.focus();
		return false;
	}
	if(txtRicerca.value.length<3) {
		alert("Attenzione!!\nInserire un minimo di 3 caratteri.");
		txtRicerca.value='';
		txtRicerca.focus();
		return false;
	}
	return true;
}