function controllocampi()
	{var tuttoOK = true
		if ((document.forms[0].user.value == '') && (tuttoOK == true))
			{
				window.alert('Inserite il vostro UserID');
				tuttoOK = false
			}
		if ((document.forms[0].testolibero.value == '') && (tuttoOK == true))
		{
			window.alert('Compilare il modulo correttamente, amnca il testo del messaggio');
			tuttoOK = false
		}
		if (tuttoOK == true)
			{document.forms[0].submit();}
	}