<!--
function CtlDati()
{
   if (document.login.username.value == '')
   {
     alert('Attenzione! Il campo ->User<- è obbligatorio!');
	 document.login.username.focus();
   }
   else
   {
     if (document.login.password.value == '')
     {
       alert('Attenzione! Il campo ->Pass<- è obbligatorio!');
	   document.login.password.focus();
     }
     else
     {
	   document.login.submit();
     }
   }
}

//-->
