<!--

function allerta()
        {
        	alert("Campi vuoti! Immettere almeno il valore di un campo per effettuare la ricerca!"); 
        }

function ControllaForm()
	{
	// Controllo TEXTfields (nome ed e-mail)
		 
                     
               
                if (document.data.argomento.value == ""&&document.data.argomento2.value == ""&&document.data.autore.value == ""&&document.data.titolo.value == ""&&document.data.LuogoDiStampa.value == ""&&document.data.editore.value == ""&&document.data.anno.value == "") 
			{
				allerta ();
				document.data.argomento.focus();
			        return (false);
			}

        // Fine controlo TEXTfield


        return true
	}
// -->