﻿function validate(form)
{
   if(form.password.value == "Distributor")
   {
      document.cookie = "access=true"
      document.location = "distributor_info.html";
   }
   else
   {
      alert("SORRY, YOUR PASSWORD IS INCORRECT: " + form.password.value);
   }
}
