		function checkAndSubmit()
		{
			for (iUsers=0; iUsers<users.length; iUsers++)
			{
				if ((document.forms[0].username.value==users[iUsers]) && (document.forms[0].password.value==pwd[iUsers]))
				{
					// OK: elemento trovato --> aprire la pagina indice
					window.location.href = 'intranet.html';
					break;
				}
			}
		}

