<!--
function check_ticket(theForm) {
  if (theForm.tour_month.value == "") {
    alert("Please Choose A Tour Date Month");
    theForm.tour_month.focus();
    return (false);
  }
  if (theForm.tour_day.value == "") {
    alert("Please Choose A Tour Date Day");
    theForm.tour_day.focus();
    return (false);
  }
  if (isNaN(theForm.adult.value)) {
    alert("Please Enter A Valid Number of Tickets");
    theForm.adult.focus();
    return (false);
  }
  if (isNaN(theForm.senior.value)) {
    alert("Please Enter A Valid Number of Tickets");
    theForm.senior.focus();
    return (false);
  }
  if (isNaN(theForm.aaa.value)) {
    alert("Please Enter A Valid Number of Tickets");
    theForm.aaa.focus();
    return (false);
  }
  if (isNaN(theForm.nthp.value)) {
    alert("Please Enter A Valid Number of Tickets");
    theForm.nthp.focus();
    return (false);
  }
  if (isNaN(theForm.student.value)) {
    alert("Please Enter A Valid Number of Tickets");
    theForm.student.focus();
    return (false);
  }
  if (isNaN(theForm.family.value)) {
    alert("Please Enter A Valid Number of Tickets");
    theForm.family.focus();
    return (false);
  }
  if (isNaN(theForm.film.value)) {
    alert("Please Enter A Valid Number of Tickets");
    theForm.film.focus();
    return (false);
  }
  
  if (theForm.total.value == "" || theForm.total.value <= 0) {
    alert("Please Choose At Least One Type of Ticket to Purchase");
    theForm.total.focus();
    return (false);
  }
  
  if (theForm.fname.value == "") {
    alert("Please Enter Your First Name");
    theForm.fname.focus();
    return (false);
  }
  if (theForm.lname.value == "") {
    alert("Please Enter Your Last Name");
    theForm.lname.focus();
    return (false);
  }
  if (theForm.address1.value == "") {
    alert("Please Enter Your Street Address Line 1");
    theForm.address1.focus();
    return (false);
  }
  if (theForm.city.value == "") {
    alert("Please Enter Your City of Residence");
    theForm.city.focus();
    return (false);
  }
  if (theForm.state.value == "") {
    alert("Please Choose Your State of Residence.");
    theForm.state.focus();
    return (false);
  }
  if (theForm.zip.value == "" || theForm.zip.value.length < 5 || isNaN(theForm.zip.value)) {
    alert("Please Enter A Valid Zip Code - Ex. 47712");
    theForm.zip.focus();
    return (false);
  }
  if (theForm.email.value.indexOf(".") == -1 || theForm.email.value.indexOf("@") == -1 || theForm.email.value.length == 0) {
	alert("Please Enter A Valid Email Address - mike@usi.edu");
	theForm.email.focus();
	return (false);
  }
  
  return (true);
}
//-->

