function do_mandatoryFieldFocus(field) {field.style.backgroundColor = "white";}
function do_mandatoryFieldBlur(field,requireColor) {if (!field.value.length) {field.style.backgroundColor = requireColor;}}
function validateFormJob() {
	var submitMe;
	if (jobForm.clubName.selectedIndex == 0){	alert('Please Select which club');return false;}
	else {document.jobForm.action = "jobs.cfm?submit=true";	return true}	
}
function validateForm() {
	var submitMe;
	if (standardForm.clubName.selectedIndex == 0){alert('Please Select which club');return false;}
	else {document.standardForm.action = "standardForm.cfm?submit=true";return true}
}
function nonValidateForm() {document.nonMemberForm.action = "nonMembersForm.cfm?submit=true";return true}
function validateEform() {
	var submitMe;
	if (eNewsletterForm.clubName_signup.selectedIndex == 0){alert('Please Select which club');return false;}
	else {document.eNewsletterForm.action = "eNewsletter.cfm?submitted3=true";return true}
}
