// breaks the site out of frames if loaded in someone elses site
// -------------------------------------------------------------
if (self.location.href != top.location.href) {
	top.location.href = self.location.href;
}

function validatorSubmitList(theForm) {
	var goodSName = /^([a-zA-Z]{2,})$/;
	var goodName = /^([a-zA-Z\-\.\,\s]{2,})+$/;
	var goodCompany = /^([0-9a-zA-Z\-\.\,\s]{2,})+$/;
	var goodAddress = /^([0-9a-zA-Z\-\.\,\#\s]{2,})+$/;
//	var goodEmail = /^([a-zA-Z0-9\_\.\-])+@(([a-zA-Z0-9\-])+\.)+([a-zA-Z]{2,})+$/;
	var goodEmail = /^([a-zA-Z0-9\_\.\-]{2,})+@+([a-zA-Z0-9\.\-])+\.+([a-zA-Z]{2,})+$/;
	var goodZip = /^([0-9]{5,})+$/;
	var goodNumber = /^([0-9])+$/;
	var goodPhone = /^([0-9]{3,3})+-+([0-9]{3,3})+-+([0-9]{4,4})+$/;
	
	if (theForm._COMPANY.value!='' && !goodCompany.test(theForm._COMPANY.value)) { 
		alert('You have invalid characters in the \"Business\" field.');
		theForm._COMPANY.focus();
		return (false);
	}
	
	if (theForm._FIRSTNAME.value == "") {
		alert("Please enter a \"First Name\".");
		theForm._FIRSTNAME.focus();
		return (false);
	} else if (!goodSName.test(theForm._FIRSTNAME.value)) { 
		alert('You have invalid characters in the \"First Name\" field.');
		theForm._FIRSTNAME.focus();
		return (false);
	}
	
	if (theForm._LASTNAME.value == "") {
		alert("Please enter a \"Last Name\".");
		theForm._LASTNAME.focus();
		return (false);
	} else if (!goodSName.test(theForm._LASTNAME.value)) { 
		alert('You have invalid characters in the \"Last Name\" field.');
		theForm._LASTNAME.focus();
		return (false);
	}
	
	if (theForm._ADDRESS.value == "") {
		alert("Please enter an \"Address\".");
		theForm._ADDRESS.focus();
		return (false);
	} else if (!goodSName.test(theForm._ADDRESS.value)) { 
		alert('You have invalid characters in the \"Address\" field.');
		theForm._ADDRESS.focus();
		return (false);
	}
	
	if (theForm._CITY.value == "") {
		alert("Please enter a \"City\".");
		theForm._CITY.focus();
		return (false);
	} else if (!goodName.test(theForm._CITY.value)) { 
		alert('You have invalid characters in the \"City\" field.');
		theForm._CITY.focus();
		return (false);
	}
	
	if (theForm._STATE.selectedIndex==0) {
		alert("Please select a \"State\".");
		theForm._STATE.focus();
		return (false);
	}
	
	if (theForm._ZIP.value == "") {
		alert("Please enter a \"Zip\/Postal Code\".");
		theForm._ZIP.focus();
		return (false);
	} else if (!goodZip.test(theForm._ZIP.value)) { 
		alert('You have invalid characters in the \"Zip\/Postal Code\" field.');
		theForm._ZIP.focus();
		return (false);
	}
	
	if (theForm._PHONE.value == "") {
		alert("Please enter a \"Phone Number\".");
		theForm._PHONE.focus();
		return (false);
	} else if (!goodPhone.test(theForm._PHONE.value) || theForm._PHONE.value == "812-555-1212") {
		alert("You have invalid characters in the \"Phone Number\" field.");
		theForm._PHONE.focus();
		return (false);
	}
	
	if (theForm._EMAIL.value == "") {
		alert("Please enter an \"Email\".");
		theForm._EMAIL.focus();
		return (false);
	} else if (!goodEmailL.test(theForm._EMAIL.value) || theForm._EMAIL.value == "name@domain.com") {
		alert("You have invalid characters in the \"Email\" field.");
		theForm._EMAIL.focus();
		return (false);
	}	
	
	return (true);
}

function validatorMemberShip(theForm) {
	//var goodSName = /^([a-zA-Z]{2,})$/;
	var goodName = /^([a-zA-Z\-\.\,\s]{2,})+$/;
	//var goodCCName = /^([a-zA-Z\s]{2,})+$/;
	var goodCCNumber = /^([0-9]){13,16}$/;
	var goodCCCVV = /^([0-9]){3,4}$/;
//	var goodEmail = /^([a-zA-Z0-9\_\.\-])+@(([a-zA-Z0-9\-])+\.)+([a-zA-Z]{2,})+$/;
	var goodEmail = /^([a-zA-Z0-9\_\.\-]{2,})+@+([a-zA-Z0-9\.\-])+\.+([a-zA-Z]{2,})+$/;
	var goodZip = /^([0-9]{5,})+$/;
	var goodNumber = /^([0-9])+$/;
	var goodPhone = /^([0-9]{3,3})+-+([0-9]{3,3})+-+([0-9]{4,4})+$/;
	
	if (theForm._COMPANY.value!='' && !goodName.test(theForm._COMPANY.value)) { 
		alert('You have invalid characters in the \"Business\" field.');
		theForm._COMPANY.focus();
		return (false);
	}
	
	if (theForm._FIRSTNAME.value == "") {
		alert("Please enter a \"First Name\".");
		theForm._FIRSTNAME.focus();
		return (false);
	} else if (!goodName.test(theForm._FIRSTNAME.value)) { 
		alert('You have invalid characters in the \"First Name\" field.');
		theForm._FIRSTNAME.focus();
		return (false);
	}
	
	if (theForm._LASTNAME.value == "") {
		alert("Please enter a \"Last Name\".");
		theForm._LASTNAME.focus();
		return (false);
	} else if (!goodName.test(theForm._LASTNAME.value)) { 
		alert('You have invalid characters in the \"Last Name\" field.');
		theForm._LASTNAME.focus();
		return (false);
	}

	if (theForm._ADDRESS.value == "") {
		alert("Please enter an \"Address\".");
		theForm._ADDRESS.focus();
		return (false);
	}

	if (theForm._CITY.value == "") {
		alert("Please enter a \"City\".");
		theForm._CITY.focus();
		return (false);
	}

	if (theForm._STATE.selectedIndex == 0) {
		alert("Please select a \"State/Province\".");
		theForm._STATE.focus();
		return (false);
	}

	if (theForm._ZIP.value == "") {
		alert("Please enter a \"Zip/Postal Code\".");
		theForm._ZIP.focus();
		return (false);
	}

	if (theForm._PHONE.value == "") {
		alert("Please enter a \"Phone Number\".");
		theForm._PHONE.focus();
		return (false);
	} else if (!goodPhone.test(theForm._PHONE.value) || theForm._PHONE.value == "812-555-1212") {
		alert("You have invalid characters in the \"Phone Number\" field.");
		theForm._PHONE.focus();
		return (false);
	}
	
	if (theForm._EMAIL.value == "") {
		alert("Please enter an \"Email\".");
		theForm._EMAIL.focus();
		return (false);
	} else if (!goodEmail.test(theForm._EMAIL.value) || theForm._EMAIL.value == "name@domain.com") {
		alert("You have invalid characters in the \"Email\" field.");
		theForm._EMAIL.focus();
		return (false);
	}	
	
	/*
	if (theForm._CCNAME.value == "") {
		alert("Please enter the \"Name on Credit Card\".");
		theForm._CCNAME.focus();
		return (false);
	} else if (!goodCCName.test(theForm._CCNAME.value)) { 
		alert('You have invalid characters in the \"Name on Credit Card\" field.');
		theForm._CCNAME.focus();
		return (false);
	}
	*/
	
	if (theForm._CCTYPE.selectedIndex == 0) {
		alert("Please select a \"Credit Card Type\".");
		theForm._CCTYPE.focus();
		return (false);
	}
	
	if (theForm._CCNUMBER.value == "") {
		alert("Please enter the \"Credit Card Number\".");
		theForm._CCNUMBER.focus();
		return (false);
	} else if (!goodCCNumber.test(theForm._CCNUMBER.value)) { 
		alert('You have invalid characters in the \"Credit Card Number\" field.');
		theForm._CCNUMBER.focus();
		return (false);
	}
	
	if (theForm._CCEXPMONTH.selectedIndex == 0) {
		alert("Please select an \"Expiration Month\".");
		theForm._CCEXPMONTH.focus();
		return (false);
	}
	
	if (theForm._CCEXPYEAR.selectedIndex == 0) {
		alert("Please select an \"Expiration Year\".");
		theForm._CCEXPYEAR.focus();
		return (false);
	}
	
	if (theForm._CCCVV.value == "") {
		alert("Please enter the \"Credit Card CVV\".");
		theForm._CCCVV.focus();
		return (false);
	} else if (!goodCCCVV.test(theForm._CCCVV.value)) { 
		alert('You have invalid characters in the \"Credit Card CVV\" field.');
		theForm._CCCVV.focus();
		return (false);
	}
	

	return (true);
}


function validatorPayment(theForm) {
	//var goodSName = /^([a-zA-Z]{2,})$/;
	var goodName = /^([a-zA-Z\-\.\,\s]{2,})+$/;
	//var goodCCName = /^([a-zA-Z\s]{2,})+$/;
	var goodCCNumber = /^([0-9]){13,16}$/;
	var goodCCCVV = /^([0-9]){3,4}$/;
//	var goodEmail = /^([a-zA-Z0-9\_\.\-])+@(([a-zA-Z0-9\-])+\.)+([a-zA-Z]{2,})+$/;
	var goodEmail = /^([a-zA-Z0-9\_\.\-]{2,})+@+([a-zA-Z0-9\.\-])+\.+([a-zA-Z]{2,})+$/;
	var goodZip = /^([0-9]{5,})+$/;
	var goodNumber = /^([0-9])+$/;
	var goodPhone = /^([0-9]{3,3})+-+([0-9]{3,3})+-+([0-9]{4,4})+$/;
	
	//if (theForm._COMPANY.value!='' && !goodName.test(theForm._COMPANY.value)) { 
//		alert('You have invalid characters in the \"Business\" field.');
//		theForm._COMPANY.focus();
//		return (false);
//	}

	if (!theForm._COST[0].checked && !theForm._COST[1].checked && !theForm._COST[2].checked) {
		alert("Please select a \"Payment Amount\".");
		return (false)	}
	
	if (theForm._FIRSTNAME.value == "") {
		alert("Please enter a \"First Name\".");
		theForm._FIRSTNAME.focus();
		return (false);
	} else if (!goodName.test(theForm._FIRSTNAME.value)) { 
		alert('You have invalid characters in the \"First Name\" field.');
		theForm._FIRSTNAME.focus();
		return (false);
	}
	
	if (theForm._LASTNAME.value == "") {
		alert("Please enter a \"Last Name\".");
		theForm._LASTNAME.focus();
		return (false);
	} else if (!goodName.test(theForm._LASTNAME.value)) { 
		alert('You have invalid characters in the \"Last Name\" field.');
		theForm._LASTNAME.focus();
		return (false);
	}

	if (theForm._ADDRESS.value == "") {
		alert("Please enter an \"Address\".");
		theForm._ADDRESS.focus();
		return (false);
	}

	if (theForm._CITY.value == "") {
		alert("Please enter a \"City\".");
		theForm._CITY.focus();
		return (false);
	}

	if (theForm._STATE.selectedIndex == 0) {
		alert("Please select a \"State/Province\".");
		theForm._STATE.focus();
		return (false);
	}

	if (theForm._ZIP.value == "") {
		alert("Please enter a \"Zip/Postal Code\".");
		theForm._ZIP.focus();
		return (false);
	}

	if (theForm._PHONE.value == "") {
		alert("Please enter a \"Phone Number\".");
		theForm._PHONE.focus();
		return (false);
	} else if (!goodPhone.test(theForm._PHONE.value) || theForm._PHONE.value == "812-555-1212") {
		alert("You have invalid characters in the \"Phone Number\" field.");
		theForm._PHONE.focus();
		return (false);
	}
	
	if (theForm._EMAIL.value == "") {
		alert("Please enter an \"Email\".");
		theForm._EMAIL.focus();
		return (false);
	} else if (!goodEmail.test(theForm._EMAIL.value) || theForm._EMAIL.value == "name@domain.com") {
		alert("You have invalid characters in the \"Email\" field.");
		theForm._EMAIL.focus();
		return (false);
	}	
		
	if (theForm._CCTYPE.selectedIndex == 0) {
		alert("Please select a \"Credit Card Type\".");
		theForm._CCTYPE.focus();
		return (false);
	}
	
	if (theForm._CCNUMBER.value == "") {
		alert("Please enter the \"Credit Card Number\".");
		theForm._CCNUMBER.focus();
		return (false);
	} else if (!goodCCNumber.test(theForm._CCNUMBER.value)) { 
		alert('You have invalid characters in the \"Credit Card Number\" field.');
		theForm._CCNUMBER.focus();
		return (false);
	}
	
	if (theForm._CCEXPMONTH.selectedIndex == 0) {
		alert("Please select an \"Expiration Month\".");
		theForm._CCEXPMONTH.focus();
		return (false);
	}
	
	if (theForm._CCEXPYEAR.selectedIndex == 0) {
		alert("Please select an \"Expiration Year\".");
		theForm._CCEXPYEAR.focus();
		return (false);
	}
	
	if (theForm._CCCVV.value == "") {
		alert("Please enter the \"Credit Card CVV\".");
		theForm._CCCVV.focus();
		return (false);
	} else if (!goodCCCVV.test(theForm._CCCVV.value)) { 
		alert('You have invalid characters in the \"Credit Card CVV\" field.');
		theForm._CCCVV.focus();
		return (false);
	}
	

	return (true);
}


function validatorConference(theForm) {
	//var goodSName = /^([a-zA-Z]{2,})$/;
	var goodName = /^([a-zA-Z\-\.\,\s]{2,})+$/;
	//var goodCCName = /^([a-zA-Z\s]{2,})+$/;
	var goodCCNumber = /^([0-9]){13,16}$/;
	var goodCCCVV = /^([0-9]){3,4}$/;
//	var goodEmail = /^([a-zA-Z0-9\_\.\-])+@(([a-zA-Z0-9\-])+\.)+([a-zA-Z]{2,})+$/;
	var goodEmail = /^([a-zA-Z0-9\_\.\-]{2,})+@+([a-zA-Z0-9\.\-])+\.+([a-zA-Z]{2,})+$/;
	var goodZip = /^([0-9]{5,})+$/;
	var goodNumber = /^([0-9])+$/;
	var goodMemberNumber = /^([0-9]){5}$/;
	var goodPhone = /^([0-9]{3,3})+-+([0-9]{3,3})+-+([0-9]{4,4})+$/;
	
	if (theForm._FIRSTNAME.value == "") {
		alert("Please enter a \"First Name\".");
		theForm._FIRSTNAME.focus();
		return (false);
	} else if (!goodName.test(theForm._FIRSTNAME.value)) { 
		alert('You have invalid characters in the \"First Name\" field.');
		theForm._FIRSTNAME.focus();
		return (false);
	}
	
	if (theForm._LASTNAME.value == "") {
		alert("Please enter a \"Last Name\".");
		theForm._LASTNAME.focus();
		return (false);
	} else if (!goodName.test(theForm._LASTNAME.value)) { 
		alert('You have invalid characters in the \"Last Name\" field.');
		theForm._LASTNAME.focus();
		return (false);
	}

	if (theForm._ADDRESS.value == "") {
		alert("Please enter an \"Address\".");
		theForm._ADDRESS.focus();
		return (false);
	}

	if (theForm._CITY.value == "") {
		alert("Please enter a \"City\".");
		theForm._CITY.focus();
		return (false);
	}

	if (theForm._STATE.selectedIndex == 0) {
		alert("Please select a \"State/Province\".");
		theForm._STATE.focus();
		return (false);
	}

	if (theForm._ZIP.value == "") {
		alert("Please enter a \"Zip/Postal Code\".");
		theForm._ZIP.focus();
		return (false);
	}
	
	if (theForm._EMPLOYER.value == "") {
		alert("Please enter a \"Place of Employment\".");
		theForm._EMPLOYER.focus();
		return (false);
	}

	if (theForm._PHONE.value == "") {
		alert("Please enter a \"Phone Number\".");
		theForm._PHONE.focus();
		return (false);
	} else if (!goodPhone.test(theForm._PHONE.value) || theForm._PHONE.value == "812-555-1212") {
		alert("You have invalid characters in the \"Phone Number\" field.");
		theForm._PHONE.focus();
		return (false);
	}
	
	if (theForm._EMAIL.value == "") {
		alert("Please enter an \"Email\".");
		theForm._EMAIL.focus();
		return (false);
	} else if (!goodEmail.test(theForm._EMAIL.value) || theForm._EMAIL.value == "name@domain.com") {
		alert("You have invalid characters in the \"Email\" field.");
		theForm._EMAIL.focus();
		return (false);
	}	
		
	if (theForm._TOTAL.value == 0) {
		alert("Please select a \"Payment Amount\".");
		return (false)	
	}
	
	if (!goodMemberNumber.test(theForm._MEMBER_NUMBER.value) && theForm._MEMBER_NUMBER.value != "") {
		alert("Please enter a valid \"Membership  Card Number\".");
		theForm._MEMBER_NUMBER.focus();
		return (false);
	}
	
	if (theForm._CCTYPE.selectedIndex == 0) {
		alert("Please select a \"Credit Card Type\".");
		theForm._CCTYPE.focus();
		return (false);
	}
	
	if (theForm._CCNUMBER.value == "") {
		alert("Please enter the \"Credit Card Number\".");
		theForm._CCNUMBER.focus();
		return (false);
	} else if (!goodCCNumber.test(theForm._CCNUMBER.value)) { 
		alert('You have invalid characters in the \"Credit Card Number\" field.');
		theForm._CCNUMBER.focus();
		return (false);
	}
	
	if (theForm._CCEXPMONTH.selectedIndex == 0) {
		alert("Please select an \"Expiration Month\".");
		theForm._CCEXPMONTH.focus();
		return (false);
	}
	
	if (theForm._CCEXPYEAR.selectedIndex == 0) {
		alert("Please select an \"Expiration Year\".");
		theForm._CCEXPYEAR.focus();
		return (false);
	}
	
	if (theForm._CCCVV.value == "") {
		alert("Please enter the \"Credit Card CVV\".");
		theForm._CCCVV.focus();
		return (false);
	} else if (!goodCCCVV.test(theForm._CCCVV.value)) { 
		alert('You have invalid characters in the \"Credit Card CVV\" field.');
		theForm._CCCVV.focus();
		return (false);
	}
	
	var go = false;
	for (i=theForm._ATTENDANCE.length-1; i > -1; i--) {
		if (theForm._ATTENDANCE[i].checked) {
			go = true;
		}
	}
	if (go==false) {
		alert('Please fill out the \"Attendence\" area of the \"Getting to Know You\".');
		return(false);
	}
		
	go = false;
	var myAge = '';
	for (i=theForm._AGEGROUP.length-1; i > -1; i--) {
		if (theForm._AGEGROUP[i].checked) {
			myAge = theForm._AGEGROUP[i].value;
			go = true;
		}
	}
	if (go==false) {
		alert('Please fill out the \"Age Group You Work With\" area of the \"Getting to Know You\".');
		return(false);
	}
	if (myAge=='Other' && document.getElementById('ageOther').value=='') {
		alert('Please fill in the \"Other\" field for \"Age Group You Work With\" in the \"Getting to Know You\" section.');
		document.getElementById('ageOther').focus();
		return(false);	
	}
	
	go = false;
	var myPosition = '';
	for (i=theForm._POSITION.length-1; i > -1; i--) {
		if (theForm._POSITION[i].checked) {
			myPosition = theForm._POSITION[i].value;
			go = true;
		}
	}
	if (go==false) {
		alert('Please fill out the \"Position\" area of the \"Getting to Know You\".');
		return(false);
	}
	if (myPosition=='Other' && document.getElementById('positionOther').value=='') {
		alert('Please fill in the \"Other\" field for \"Position\" in the \"Getting to Know You\" section.');
		document.getElementById('postionOther').focus();
		return(false);	
	}
	
	
	return (true);
}


function validatorDonation(theForm) {
	//var goodSName = /^([a-zA-Z]{2,})$/;
	var goodName = /^([a-zA-Z\-\.\,\s]{2,})+$/;
	//var goodCCName = /^([a-zA-Z\s]{2,})+$/;
	var goodCCNumber = /^([0-9]){13,16}$/;
	var goodCCCVV = /^([0-9]){3,4}$/;
//	var goodEmail = /^([a-zA-Z0-9\_\.\-])+@(([a-zA-Z0-9\-])+\.)+([a-zA-Z]{2,})+$/;
	var goodEmail = /^([a-zA-Z0-9\_\.\-]{2,})+@+([a-zA-Z0-9\.\-])+\.+([a-zA-Z]{2,})+$/;
	var goodZip = /^([0-9]{5,})+$/;
	var goodNumber = /^([0-9])+$/;
	var goodPhone = /^([0-9]{3,3})+-+([0-9]{3,3})+-+([0-9]{4,4})+$/;
	
	if (theForm._FIRSTNAME.value == "") {
		alert("Please enter a \"First Name\".");
		theForm._FIRSTNAME.focus();
		return (false);
	} else if (!goodName.test(theForm._FIRSTNAME.value)) { 
		alert('You have invalid characters in the \"First Name\" field.');
		theForm._FIRSTNAME.focus();
		return (false);
	}
	
	if (theForm._LASTNAME.value == "") {
		alert("Please enter a \"Last Name\".");
		theForm._LASTNAME.focus();
		return (false);
	} else if (!goodName.test(theForm._LASTNAME.value)) { 
		alert('You have invalid characters in the \"Last Name\" field.');
		theForm._LASTNAME.focus();
		return (false);
	}

	if (theForm._ADDRESS.value == "") {
		alert("Please enter an \"Address\".");
		theForm._ADDRESS.focus();
		return (false);
	}

	if (theForm._CITY.value == "") {
		alert("Please enter a \"City\".");
		theForm._CITY.focus();
		return (false);
	}

	if (theForm._STATE.selectedIndex == 0) {
		alert("Please select a \"State/Province\".");
		theForm._STATE.focus();
		return (false);
	}

	if (theForm._ZIP.value == "") {
		alert("Please enter a \"Zip/Postal Code\".");
		theForm._ZIP.focus();
		return (false);
	}
	
	if (theForm._EMPLOYER.value == "") {
		alert("Please enter a \"Place of Employment\".");
		theForm._EMPLOYER.focus();
		return (false);
	}

	if (theForm._PHONE.value == "") {
		alert("Please enter a \"Phone Number\".");
		theForm._PHONE.focus();
		return (false);
	} else if (!goodPhone.test(theForm._PHONE.value) || theForm._PHONE.value == "812-555-1212") {
		alert("You have invalid characters in the \"Phone Number\" field.");
		theForm._PHONE.focus();
		return (false);
	}
	
	if (theForm._EMAIL.value == "") {
		alert("Please enter an \"Email\".");
		theForm._EMAIL.focus();
		return (false);
	} else if (!goodEmail.test(theForm._EMAIL.value) || theForm._EMAIL.value == "name@domain.com") {
		alert("You have invalid characters in the \"Email\" field.");
		theForm._EMAIL.focus();
		return (false);
	}		
			
	if (theForm._CCTYPE.selectedIndex == 0) {
		alert("Please select a \"Credit Card Type\".");
		theForm._CCTYPE.focus();
		return (false);
	}
	
	if (theForm._CCNUMBER.value == "") {
		alert("Please enter the \"Credit Card Number\".");
		theForm._CCNUMBER.focus();
		return (false);
	} else if (!goodCCNumber.test(theForm._CCNUMBER.value)) { 
		alert('You have invalid characters in the \"Credit Card Number\" field.');
		theForm._CCNUMBER.focus();
		return (false);
	}
	
	if (theForm._CCEXPMONTH.selectedIndex == 0) {
		alert("Please select an \"Expiration Month\".");
		theForm._CCEXPMONTH.focus();
		return (false);
	}
	
	if (theForm._CCEXPYEAR.selectedIndex == 0) {
		alert("Please select an \"Expiration Year\".");
		theForm._CCEXPYEAR.focus();
		return (false);
	}
	
	if (theForm._CCCVV.value == "") {
		alert("Please enter the \"Credit Card CVV\".");
		theForm._CCCVV.focus();
		return (false);
	} else if (!goodCCCVV.test(theForm._CCCVV.value)) { 
		alert('You have invalid characters in the \"Credit Card CVV\" field.');
		theForm._CCCVV.focus();
		return (false);
	}
	
	if (theForm._AMOUNT.value == "") {
		alert("Please enter a \"Donation Amount\".");
		theForm._AMOUNT.focus();
		return (false);
	} else if (!goodNumber.test(theForm._AMOUNT.value)) {
		alert("You have invalid characters in the \"Donation Amount\" field.");
		theForm._AMOUNT.focus();
		return (false);
	}
	
	
	return (true);
}
