function checkform ( form )
{
  if (form.access_password.value == "") {
    alert( "Enter the missing word in the \"OATH\" to enter." );
    form.access_password.focus();
    return false ;
  }
  return true ;
}
