function ricerca(form)
{
	if (form.stringa.value == "") 
	{
		alert("Inserire il testo");
		form.stringa.focus();
		return (false)
	}

	return true
	
}