// this script checks that an entry has been made in the password field called kw

function checkForm(f)
   {
   if (!f.kw.value)
      {
      alert("Please enter a PIN."); 
      f.kw.focus(); 
      return false;
      }

   return true;
   }

// end script
