// Allure Now Functions

// Check Registration Form

function checkRegistration(theForm) {
  if (!checkText(theForm.sFirstName,"Please enter your First Name.", "yes"))  {
    return false;
  }
  if (!checkText(theForm.sLastName,"Please enter your Last Name.", "yes"))  {
    return false;
  }
  if (!checkText(theForm.sAddress,"Please enter an Address.", "yes"))  {
    return false;
  }
  if (!checkText(theForm.sCity,"Please enter a City.", "yes"))  {
    return false;
  }
  if (!checkText(theForm.sState,"Please select a State.", "yes"))  {
    return false;
  }
  if (!checkText(theForm.sZip,"Please enter a zip code.", "yes"))  {
    return false;
  }
  if (!checkText(theForm.sPhone,"Please enter your phone number.", "yes"))  {
    return false;
  }
  if (!checkText(theForm.sEmail,"Please enter your email address.", "yes"))  {
    return false;
  }
  if (!checkText(theForm.sAllureUnitNum,"Please enter your Allure Unit Number.", "yes"))  {
    return false;
  }
  return true;
}

