// form check by davide samperi
	function autorizzazione()
          {	
		
		if (!login())
		{
			return false;
		}
		if (!password())
		{
			return false;
					}
		
		return true;
						
	}          
	    function login()
	    {
		var str=document.modulo.login.value;
		if ((str == null) || (str.length == 0))
		{
			alert("Inserire il Login");
			return false;
		}
		return true;
	                	}          
	    function password()
	    {
		var str=document.modulo.password.value;
		if ((str == null) || (str.length == 0))
		{
			alert("Inserire la Password");
			return false;
		}
		return true;
		}          
	   
