function verifica_ricerca(theForm){
 if (theForm.stringa_ric.value == ""){
    alert("Attenzione !!!\nInserire il testo da ricercare.");
    theForm.stringa_ric.focus();
    return (false);}
 if (theForm.stringa_ric.value.length < 2){
    alert("Attenzione !!!\nIl testo da ricercare deve esssere lungo almeno 2 caratteri.");
    theForm.stringa_ric.focus();
    return (false);}
 if (theForm.stringa_ric.value == "cerca tra gli oggetti in vendita .........."){
    alert("Attenzione !!!\nInserire il testo da ricercare.");
    theForm.stringa_ric.focus();
    return (false);}
return (true);}