function checkoutticketterms_Validator(theForm)
{
  if (!theForm.ticketterms.checked)
  {
    alert("To proceed you must click the box indicating that these tickets are for your personal use and not for resale.");
    return (false);
  }

  return (true);
}
