function Validator(theForm)
{

  if (theForm.AdditionalDays.value < 0)
  {
    alert("Please enter a positive number of days. If you do not want to order additional days, enter 0.");
    theForm.AdditionalDays.focus();
    return (false);
  }

}