/* 
Created by: Larry Daughenbaugh [ http://www.systemsynapse.com ] 

Feel free to edit and use any elements of the JavaScript in this document for your own.
All JavaScript was created by Larry Daughenbaugh unless otherwise noted.
*/

// ****************************************************************************** Validate Contact Form
function validateQuestions(CurrentForm){
	 if (CurrentForm.tbFirstName.value == '') {
	  	alert("Please enter your First Name.");
    document.Questions.tbFirstName.focus();
		return false;
	 }
  if (CurrentForm.tbLastName.value == '') {
	  	alert("Please enter your Last Name.");
    document.Questions.tbLastName.focus();
  return false;
  }
  if (CurrentForm.tbEmail.value == '') {
	  	alert("Please enter your Email Address.");
    document.Questions.tbEmail.focus();
  return false;
  }
	 sEmail = CurrentForm.tbEmail.value;
  if(sEmail != "" && sEmail.search(/^[\w-_.]*[\w-_.]@[\w].+[\w]+[\w]$/) == -1){
	  	alert("Please enter a VALID Email Address.");
    document.Questions.tbEmail.focus();
		return false;
	 }
		invalidChars = " /:,;";
  for (i=0; i<invalidChars.length; i++) {
    badChar = invalidChars.charAt(i);
    if (sEmail.indexOf(badChar,0) > -1) {
	    	alert("Please enter a VALID Email Address.");
      document.Questions.tbEmail.focus();
      return false;
				}
  }
  if (CurrentForm.tbComments.value == '') {
	  	alert("Please enter your Questions/Comments.");
    document.Questions.tbComments.focus();
  return false;
  }
return true;	
}
// ****************************************************************************** Validate Reservation Form
function validateReservationForm(CurrentForm){
	 if (CurrentForm.tbFirstName.value == '') {
	  	alert("Please enter your First Name.");
    document.ReservationForm.tbFirstName.focus();
		return false;
	 }
  if (CurrentForm.tbLastName.value == '') {
	  	alert("Please enter your Last Name.");
    document.ReservationForm.tbLastName.focus();
  return false;
  }
  if (CurrentForm.tbAddress.value == '') {
	  	alert("Please enter your Address.");
    document.ReservationForm.tbAddress.focus();
  return false;
  }
  if (CurrentForm.tbCity.value == '') {
	  	alert("Please enter your City.");
    document.ReservationForm.tbCity.focus();
  return false;
  }
  if (CurrentForm.tbStateProvince.value == '') {
	  	alert("Please enter your State/Province.");
    document.ReservationForm.tbStateProvince.focus();
  return false;
  }
  if (CurrentForm.tbZip.value == '') {
	  	alert("Please enter your Postal Code.");
    document.ReservationForm.tbZip.focus();
  return false;
  }
  if (CurrentForm.tbEmail.value == '') {
	  	alert("Please enter your Email Address.");
    document.ReservationForm.tbEmail.focus();
  return false;
  }
	 sEmail = CurrentForm.tbEmail.value;
  if(sEmail != "" && sEmail.search(/^[\w-_.]*[\w-_.]@[\w].+[\w]+[\w]$/) == -1){
	  	alert("Please enter a VALID Email Address.");
    document.ReservationForm.tbEmail.focus();
		return false;
	 }
		invalidChars = " /:,;";
  for (i=0; i<invalidChars.length; i++) {
    badChar = invalidChars.charAt(i);
    if (sEmail.indexOf(badChar,0) > -1) {
	    	alert("Please enter a VALID Email Address.");
      document.ReservationForm.tbEmail.focus();
      return false;
				}
  }
  if (CurrentForm.tbAttending.value == '') {
	  	alert("Please enter the Number of People Attending.");
    document.ReservationForm.tbAttending.focus();
  return false;
  }
  if (CurrentForm.tbAttending.value == '') {
	  	alert("Please enter the Number of People Attending.");
    document.ReservationForm.tbAttending.focus();
  return false;
  }
  if (CurrentForm.cbPolicy.checked == false) {
	alert("Please confirm that read the refund policy.");
	return false;
  }
return true;	
}
// ****************************************************************************** Validate Application Form
function validateApplicationForm(CurrentForm){
	 if (CurrentForm.tbFirstName.value == '') {
	  	alert("Please enter your First Name.");
    document.ApplicationForm.tbFirstName.focus();
		return false;
	 }
  if (CurrentForm.tbLastName.value == '') {
	  	alert("Please enter your Last Name.");
    document.ApplicationForm.tbLastName.focus();
  return false;
  }
  if (CurrentForm.tbAddress.value == '') {
	  	alert("Please enter your Address.");
    document.ApplicationForm.tbAddress.focus();
  return false;
  }
  if (CurrentForm.tbCity.value == '') {
	  	alert("Please enter your City.");
    document.ApplicationForm.tbCity.focus();
  return false;
  }
  if (CurrentForm.tbStateProvince.value == '') {
	  	alert("Please enter your State/Province.");
    document.ApplicationForm.tbStateProvince.focus();
  return false;
  }
  if (CurrentForm.tbZip.value == '') {
	  	alert("Please enter your Postal Code.");
    document.ApplicationForm.tbZip.focus();
  return false;
  }
  if (CurrentForm.tbPhone.value == '') {
	  	alert("Please enter your Phone Number.");
    document.ApplicationForm.tbPhone.focus();
  return false;
  }
  if (CurrentForm.tbBirthDate.value == '') {
	  	alert("Please enter your Birth Date.");
    document.ApplicationForm.tbBirthDate.focus();
  return false;
  }
  if (CurrentForm.tbEmail.value == '') {
	  	alert("Please enter your Email Address.");
    document.ApplicationForm.tbEmail.focus();
  return false;
  }
	 sEmail = CurrentForm.tbEmail.value;
  if(sEmail != "" && sEmail.search(/^[\w-_.]*[\w-_.]@[\w].+[\w]+[\w]$/) == -1){
	  	alert("Please enter a VALID Email Address.");
    document.ApplicationForm.tbEmail.focus();
		return false;
	 }
		invalidChars = " /:,;";
  for (i=0; i<invalidChars.length; i++) {
    badChar = invalidChars.charAt(i);
    if (sEmail.indexOf(badChar,0) > -1) {
	    	alert("Please enter a VALID Email Address.");
      document.ApplicationForm.tbEmail.focus();
      return false;
				}
  }
		dropdownChoice = CurrentForm.ddTraining.selectedIndex
		if (CurrentForm.ddTraining.options[dropdownChoice].value == "") {
	  	alert("Please select your form of Training.");
		return false;
		}

if (CurrentForm.tbMakingDolls.value == '') {
	  	alert("Please enter when you began making dolls.");
    document.ApplicationForm.tbMakingDolls.focus();
  return false;
  }
  if (CurrentForm.tbInspiration.value == '') {
	  	alert("Please enter what inspired you to begin making dolls.");
    document.ApplicationForm.tbInspiration.focus();
  return false;
  }
  if (CurrentForm.tbMediumReason.value == '') {
	  	alert("Please enter why you have chosen your particular media of expression.");
    document.ApplicationForm.tbMediumReason.focus();
  return false;
  }
  if (CurrentForm.tbInspiration.value == '') {
	  	alert("Please enter a brief description of your dolls.");
    document.ApplicationForm.tbInspiration.focus();
  return false;
  }
		dropdownChoice2 = CurrentForm.ddCostumes.selectedIndex
		if (CurrentForm.ddCostumes.options[dropdownChoice2].value == "") {
	  	alert("Please select if you design and produce your own costumes.");
		return false;
		}
		dropdownChoice3 = CurrentForm.ddWigs.selectedIndex
		if (CurrentForm.ddWigs.options[dropdownChoice3].value == "") {
	  	alert("Please select if you make your own wigs.");
		return false;
		}
		dropdownChoice4 = CurrentForm.ddAccessories.selectedIndex
		if (CurrentForm.ddAccessories.options[dropdownChoice4].value == "") {
	  	alert("Please select if you make your own accessories.");
		return false;
		}
  if (CurrentForm.tbPhilosophy.value == '') {
	  	alert("Please enter a brief philosophy of your dollmaking and what you hope to accomplish with your work.");
    document.ApplicationForm.tbPhilosophy.focus();
  return false;
  }
  if (CurrentForm.tbWhy.value == '') {
	  	alert("Please enter why you want to be an artist member of ODACA.");
    document.ApplicationForm.tbWhy.focus();
  return false;
  }
		dropdownChoice5 = CurrentForm.ddAccessories2.selectedIndex
		if (CurrentForm.ddAccessories2.options[dropdownChoice5].value == "") {
	  	alert("Please select if you teach workshops, seminars, classes.");
		return false;
		}
		dropdownChoice6 = CurrentForm.ddBelong.selectedIndex
		if (CurrentForm.ddBelong.options[dropdownChoice6].value == "") {
	  	alert("Please select if you belong to another juried doll artist organization.");
		return false;
		}
return true;	
}
// ****************************************************************************** Aux-ODACA Application Form
function validateAuxApplicationForm(CurrentForm){
	 if (CurrentForm.tbFirstName.value == '') {
	  	alert("Please enter your First Name.");
    document.AuxApplicationForm.tbFirstName.focus();
		return false;
	 }
  if (CurrentForm.tbLastName.value == '') {
	  	alert("Please enter your Last Name.");
    document.AuxApplicationForm.tbLastName.focus();
  return false;
  }
  if (CurrentForm.tbAddress.value == '') {
	  	alert("Please enter your Address.");
    document.AuxApplicationForm.tbAddress.focus();
  return false;
  }
  if (CurrentForm.tbCity.value == '') {
	  	alert("Please enter your City.");
    document.AuxApplicationForm.tbCity.focus();
  return false;
  }
  if (CurrentForm.tbStateProvince.value == '') {
	  	alert("Please enter your State/Province.");
    document.AuxApplicationForm.tbStateProvince.focus();
  return false;
  }
  if (CurrentForm.tbZip.value == '') {
	  	alert("Please enter your Postal Code.");
    document.AuxApplicationForm.tbZip.focus();
  return false;
  }
  if (CurrentForm.tbPhone.value == '') {
	  	alert("Please enter your Phone Number.");
    document.AuxApplicationForm.tbPhone.focus();
  return false;
  }
  if (CurrentForm.tbEmail.value == '') {
	  	alert("Please enter your Email Address.");
    document.AuxApplicationForm.tbEmail.focus();
  return false;
  }
	 sEmail = CurrentForm.tbEmail.value;
  if(sEmail != "" && sEmail.search(/^[\w-_.]*[\w-_.]@[\w].+[\w]+[\w]$/) == -1){
	  	alert("Please enter a VALID Email Address.");
    document.AuxApplicationForm.tbEmail.focus();
		return false;
	 }
		invalidChars = " /:,;";
  for (i=0; i<invalidChars.length; i++) {
    badChar = invalidChars.charAt(i);
    if (sEmail.indexOf(badChar,0) > -1) {
	    	alert("Please enter a VALID Email Address.");
      document.AuxApplicationForm.tbEmail.focus();
      return false;
				}
  }
		dropdownChoice = CurrentForm.ddHelp.selectedIndex
		if (CurrentForm.ddHelp.options[dropdownChoice].value == "") {
	  	alert("Please select if you are willing to serve or help in the upcoming year.");
		return false;
		}
return true;	
}
// ****************************************************************************** Helper Form
function validateHelperForm(CurrentForm){
	 if (CurrentForm.tbFirstName.value == '') {
	  	alert("Please enter your First Name.");
    document.HelperForm.tbFirstName.focus();
		return false;
	 }
  if (CurrentForm.tbLastName.value == '') {
	  	alert("Please enter your Last Name.");
    document.HelperForm.tbLastName.focus();
  return false;
  }
  if (CurrentForm.tbAddress.value == '') {
	  	alert("Please enter your Address.");
    document.HelperForm.tbAddress.focus();
  return false;
  }
  if (CurrentForm.tbCity.value == '') {
	  	alert("Please enter your City.");
    document.HelperForm.tbCity.focus();
  return false;
  }
  if (CurrentForm.tbStateProvince.value == '') {
	  	alert("Please enter your State/Province.");
    document.HelperForm.tbStateProvince.focus();
  return false;
  }
  if (CurrentForm.tbZip.value == '') {
	  	alert("Please enter your Postal Code.");
    document.HelperForm.tbZip.focus();
  return false;
  }
  if (CurrentForm.tbEmail.value == '') {
	  	alert("Please enter your Email Address.");
    document.HelperForm.tbEmail.focus();
  return false;
  }
	 sEmail = CurrentForm.tbEmail.value;
  if(sEmail != "" && sEmail.search(/^[\w-_.]*[\w-_.]@[\w].+[\w]+[\w]$/) == -1){
	  	alert("Please enter a VALID Email Address.");
    document.HelperForm.tbEmail.focus();
		return false;
	 }
		invalidChars = " /:,;";
  for (i=0; i<invalidChars.length; i++) {
    badChar = invalidChars.charAt(i);
    if (sEmail.indexOf(badChar,0) > -1) {
	    	alert("Please enter a VALID Email Address.");
      document.HelperForm.tbEmail.focus();
      return false;
				}
  }
  if (CurrentForm.tbDonationName.value == '') {
	  	alert("Please enter your Donation Name.");
    document.HelperForm.tbDonationName.focus();
  return false;
  }
  if (CurrentForm.tbDonationValue.value == '') {
	  	alert("Please enter the value of your Donation item.");
    document.HelperForm.tbDonationValue.focus();
  return false;
  }
		dropdownChoice = CurrentForm.ddSend.selectedIndex
		if (CurrentForm.ddSend.options[dropdownChoice].value == "") {
	  	alert("Please select how you will send your Helper Donation.");
		return false;
		}
		dropdownChoice2 = CurrentForm.ddMember.selectedIndex
		if (CurrentForm.ddMember.options[dropdownChoice2].value == "") {
	  	alert("Please select if you are currently an ODACA Member or not.");
		return false;
		}
return true;	
}
// ****************************************************************************** Sales Room Contract
function validateSalesRoomContract(CurrentForm){
	 if (CurrentForm.tbFirstName.value == '') {
	  	alert("Please enter your First Name.");
    document.SalesRoomContract.tbFirstName.focus();
		return false;
	 }
  if (CurrentForm.tbLastName.value == '') {
	  	alert("Please enter your Last Name.");
    document.SalesRoomContract.tbLastName.focus();
  return false;
  }
  if (CurrentForm.tbAddress.value == '') {
	  	alert("Please enter your Address.");
    document.SalesRoomContract.tbAddress.focus();
  return false;
  }
  if (CurrentForm.tbCity.value == '') {
	  	alert("Please enter your City.");
    document.SalesRoomContract.tbCity.focus();
  return false;
  }
  if (CurrentForm.tbStateProvince.value == '') {
	  	alert("Please enter your State/Province.");
    document.SalesRoomContract.tbStateProvince.focus();
  return false;
  }
  if (CurrentForm.tbZip.value == '') {
	  	alert("Please enter your Postal Code.");
    document.SalesRoomContract.tbZip.focus();
  return false;
  }
  if (CurrentForm.tbEmail.value == '') {
	  	alert("Please enter your Email Address.");
    document.SalesRoomContract.tbEmail.focus();
  return false;
  }
	 sEmail = CurrentForm.tbEmail.value;
  if(sEmail != "" && sEmail.search(/^[\w-_.]*[\w-_.]@[\w].+[\w]+[\w]$/) == -1){
	  	alert("Please enter a VALID Email Address.");
    document.SalesRoomContract.tbEmail.focus();
		return false;
	 }
		invalidChars = " /:,;";
  for (i=0; i<invalidChars.length; i++) {
    badChar = invalidChars.charAt(i);
    if (sEmail.indexOf(badChar,0) > -1) {
	    	alert("Please enter a VALID Email Address.");
      document.SalesRoomContract.tbEmail.focus();
      return false;
				}
  }
		dropdownChoice = CurrentForm.ddTable.selectedIndex
		if (CurrentForm.ddTable.options[dropdownChoice].value == "") {
	  	alert("Please select how many tables you'd like to reserve.");
		return false;
		}
return true;	
}
// ****************************************************************************** Roommate Form
function validateRoommateForm(CurrentForm){
	 if (CurrentForm.tbFirstName.value == '') {
	  	alert("Please enter your First Name.");
    document.RoommateForm.tbFirstName.focus();
		return false;
	 }
  if (CurrentForm.tbLastName.value == '') {
	  	alert("Please enter your Last Name.");
    document.RoommateForm.tbLastName.focus();
  return false;
  }
  if (CurrentForm.tbAddress.value == '') {
	  	alert("Please enter your Address.");
    document.RoommateForm.tbAddress.focus();
  return false;
  }
  if (CurrentForm.tbCity.value == '') {
	  	alert("Please enter your City.");
    document.RoommateForm.tbCity.focus();
  return false;
  }
  if (CurrentForm.tbStateProvince.value == '') {
	  	alert("Please enter your State/Province.");
    document.RoommateForm.tbStateProvince.focus();
  return false;
  }
  if (CurrentForm.tbZip.value == '') {
	  	alert("Please enter your Postal Code.");
    document.RoommateForm.tbZip.focus();
  return false;
  }
  if (CurrentForm.tbPhone.value == '') {
	  	alert("Please enter your Phone number.");
    document.RoommateForm.tbPhone.focus();
  return false;
  }
  if (CurrentForm.tbEmail.value == '') {
	  	alert("Please enter your Email Address.");
    document.RoommateForm.tbEmail.focus();
  return false;
  }
	 sEmail = CurrentForm.tbEmail.value;
  if(sEmail != "" && sEmail.search(/^[\w-_.]*[\w-_.]@[\w].+[\w]+[\w]$/) == -1){
	  	alert("Please enter a VALID Email Address.");
    document.RoommateForm.tbEmail.focus();
		return false;
	 }
		invalidChars = " /:,;";
  for (i=0; i<invalidChars.length; i++) {
    badChar = invalidChars.charAt(i);
    if (sEmail.indexOf(badChar,0) > -1) {
	    	alert("Please enter a VALID Email Address.");
      document.RoommateForm.tbEmail.focus();
      return false;
				}
  }
		dropdownChoice = CurrentForm.ddSmoking.selectedIndex
		if (CurrentForm.ddSmoking.options[dropdownChoice].value == "") {
	  	alert("Please select your roommate smoking preference.");
		return false;
		}
		dropdownChoice2 = CurrentForm.ddArriving.selectedIndex
		if (CurrentForm.ddArriving.options[dropdownChoice2].value == "") {
	  	alert("Please select when you are arriving.");
		return false;
		}
		dropdownChoice3 = CurrentForm.ddDeparting.selectedIndex
		if (CurrentForm.ddDeparting.options[dropdownChoice3].value == "") {
	  	alert("Please select when you are departing.");
		return false;
		}
return true;	
}
// ****************************************************************************** Artist Update Form
function validateArtistUpdateForm(CurrentForm){
	 if (CurrentForm.tbFirstName.value == '') {
	  	alert("Please enter your First Name.");
    document.ArtistUpdateForm.tbFirstName.focus();
		return false;
	 }
  if (CurrentForm.tbLastName.value == '') {
	  	alert("Please enter your Last Name.");
    document.ArtistUpdateForm.tbLastName.focus();
  return false;
  }
  if (CurrentForm.tbAddress.value == '') {
	  	alert("Please enter your Address.");
    document.ArtistUpdateForm.tbAddress.focus();
  return false;
  }
  if (CurrentForm.tbCity.value == '') {
	  	alert("Please enter your City.");
    document.ArtistUpdateForm.tbCity.focus();
  return false;
  }
  if (CurrentForm.tbStateProvince.value == '') {
	  	alert("Please enter your State/Province.");
    document.ArtistUpdateForm.tbStateProvince.focus();
  return false;
  }
  if (CurrentForm.tbZip.value == '') {
	  	alert("Please enter your Postal Code.");
    document.ArtistUpdateForm.tbZip.focus();
  return false;
  }
  if (CurrentForm.tbEmail.value == '') {
	  	alert("Please enter your Email Address.");
    document.ArtistUpdateForm.tbEmail.focus();
  return false;
  }
	 sEmail = CurrentForm.tbEmail.value;
  if(sEmail != "" && sEmail.search(/^[\w-_.]*[\w-_.]@[\w].+[\w]+[\w]$/) == -1){
	  	alert("Please enter a VALID Email Address.");
    document.ArtistUpdateForm.tbEmail.focus();
		return false;
	 }
		invalidChars = " /:,;";
  for (i=0; i<invalidChars.length; i++) {
    badChar = invalidChars.charAt(i);
    if (sEmail.indexOf(badChar,0) > -1) {
	    	alert("Please enter a VALID Email Address.");
      document.ArtistUpdateForm.tbEmail.focus();
      return false;
				}
  }
  if (CurrentForm.tbYear.value == '') {
	  	alert("Please enter the year you became a member of ODACA.");
    document.ArtistUpdateForm.tbYear.focus();
  return false;
  }
		dropdownChoice = CurrentForm.ddBio.selectedIndex
		if (CurrentForm.ddBio.options[dropdownChoice].value == "") {
	  	alert("Please select if your biography is up-to-date.");
		return false;
		}
		dropdownChoice2 = CurrentForm.ddServed.selectedIndex
		if (CurrentForm.ddServed.options[dropdownChoice2].value == "") {
	  	alert("Please select if you have ever served ODACA in any capacity.");
		return false;
		}
		dropdownChoice3 = CurrentForm.ddHelp.selectedIndex
		if (CurrentForm.ddHelp.options[dropdownChoice3].value == "") {
	  	alert("Please select if you are willing to serve or help in the upcoming year.");
		return false;
		}
		dropdownChoice4 = CurrentForm.ddPromote.selectedIndex
		if (CurrentForm.ddPromote.options[dropdownChoice4].value == "") {
	  	alert("Please select if you personally help promote ODACA now.");
		return false;
		}
		dropdownChoice5 = CurrentForm.ddPhotos.selectedIndex
		if (CurrentForm.ddPhotos.options[dropdownChoice5].value == "") {
	  	alert("Please select if you have photos from past ODACA Days that can be used on the website.");
		return false;
		}
		dropdownChoice6 = CurrentForm.ddSouvenir.selectedIndex
		if (CurrentForm.ddSouvenir.options[dropdownChoice6].value == "") {
	  	alert("Please select if you have photos of Souvenir Dolls of the past that can be used on the website.");
		return false;
		}
		dropdownChoice7 = CurrentForm.ddTeach.selectedIndex
		if (CurrentForm.ddTeach.options[dropdownChoice7].value == "") {
	  	alert("Please select if you teach workshops, seminars, classes.");
		return false;
		}
		dropdownChoice8 = CurrentForm.ddChange.selectedIndex
		if (CurrentForm.ddChange.options[dropdownChoice8].value == "") {
	  	alert("Please select if your work changed in the past year.");
		return false;
		}
return true;	
}
// ****************************************************************************** Aux-Member Form
function validateAuxMemberForm(CurrentForm){
	 if (CurrentForm.tbFirstName.value == '') {
	  	alert("Please enter your First Name.");
    document.AuxMemberForm.tbFirstName.focus();
		return false;
	 }
  if (CurrentForm.tbLastName.value == '') {
	  	alert("Please enter your Last Name.");
    document.AuxMemberForm.tbLastName.focus();
  return false;
  }
  if (CurrentForm.tbAddress.value == '') {
	  	alert("Please enter your Address.");
    document.AuxMemberForm.tbAddress.focus();
  return false;
  }
  if (CurrentForm.tbCity.value == '') {
	  	alert("Please enter your City.");
    document.AuxMemberForm.tbCity.focus();
  return false;
  }
  if (CurrentForm.tbStateProvince.value == '') {
	  	alert("Please enter your State/Province.");
    document.AuxMemberForm.tbStateProvince.focus();
  return false;
  }
  if (CurrentForm.tbZip.value == '') {
	  	alert("Please enter your Postal Code.");
    document.AuxMemberForm.tbZip.focus();
  return false;
  }
  if (CurrentForm.tbEmail.value == '') {
	  	alert("Please enter your Email Address.");
    document.AuxMemberForm.tbEmail.focus();
  return false;
  }
	 sEmail = CurrentForm.tbEmail.value;
  if(sEmail != "" && sEmail.search(/^[\w-_.]*[\w-_.]@[\w].+[\w]+[\w]$/) == -1){
	  	alert("Please enter a VALID Email Address.");
    document.AuxMemberForm.tbEmail.focus();
		return false;
	 }
		invalidChars = " /:,;";
  for (i=0; i<invalidChars.length; i++) {
    badChar = invalidChars.charAt(i);
    if (sEmail.indexOf(badChar,0) > -1) {
	    	alert("Please enter a VALID Email Address.");
      document.AuxMemberForm.tbEmail.focus();
      return false;
				}
  }
  if (CurrentForm.tbYear.value == '') {
	  	alert("Please enter the year you became a member of Aux-ODACA.");
    document.AuxMemberForm.tbYear.focus();
  return false;
  }
		dropdownChoice = CurrentForm.ddServed.selectedIndex
		if (CurrentForm.ddServed.options[dropdownChoice].value == "") {
	  	alert("Please select if you have ever served ODACA in any capacity.");
		return false;
		}
		dropdownChoice2 = CurrentForm.ddHelp.selectedIndex
		if (CurrentForm.ddHelp.options[dropdownChoice2].value == "") {
	  	alert("Please select if you are willing to serve or help in the upcoming year.");
		return false;
		}
		dropdownChoice3 = CurrentForm.ddPromote.selectedIndex
		if (CurrentForm.ddPromote.options[dropdownChoice3].value == "") {
	  	alert("Please select if you personally help promote ODACA now.");
		return false;
		}
  if (CurrentForm.tbYear.value == '') {
	  	alert("Please enter what ODACA can do to make Aux-ODACA membership more desirable.");
    document.AuxMemberForm.tbYear.focus();
  return false;
  }
		dropdownChoice4 = CurrentForm.ddPhotos.selectedIndex
		if (CurrentForm.ddPhotos.options[dropdownChoice4].value == "") {
	  	alert("Please select if you have photos from past ODACA Days that can be used on the website.");
		return false;
		}
		dropdownChoice5 = CurrentForm.ddSouvenir.selectedIndex
		if (CurrentForm.ddSouvenir.options[dropdownChoice5].value == "") {
	  	alert("Please select if you have photos of Souvenir Dolls of the past that can be used on the website.");
		return false;
		}
return true;	
}
