// Form Validation Check
// Copyright 9th October 2005, by J. Marc Nattier, Taxon Development LLC

// You do not have permission to copy and use this javascript
// without the express permission of Copyright Holder.

function ValidateForm()
{
  
     if(document.login.Password.value.length < 6  || (document.login.Password.value) != 
    "dental") 
   { 
      alert('Invalid Password, Please Re-Enter') 
      document.login.Password.focus(); 
      return false; 
   }  

return true;
 
} 
