

//==================================================
// BEGIN FORM VALIDATION FUNCTIONS
//==================================================
function validateForm_Violation(the_form) {
	
	var is_valid = true;	// we assume it is a valid form
	// custom code can be added to this fucntion if form specific actions are required
	
	// call the standard form validation function
	is_valid = validateForm(the_form);
	
	return is_valid;

}

//------------------------------------------------------------------------------------------------------------------------------------------------


function validateForm_ContactUs(the_form) {
	
	var is_valid = true;	// we assume it is a valid form
	// custom code can be added to this fucntion if form specific actions are required
	
	// call the standard form validation function
	is_valid = validateForm(the_form);
	
	return is_valid;
}

//------------------------------------------------------------------------------------------------------------------------------------------------

function validateForm_WorkOrder(the_form) {
	var is_valid = true;	// we assume it is a valid form
	// custom code can be added to this fucntion if form specific actions are required
	
	// call the standard form validation function
	is_valid = validateForm(the_form);
	
	return is_valid;
}

//------------------------------------------------------------------------------------------------------------------------------------------------

function validateForm_OwnerInfo(the_form) {
	var is_valid = true;	// we assume it is a valid form
	// custom code can be added to this fucntion if form specific actions are required
	
	// call the standard form validation function
	is_valid = validateForm(the_form);
	
	return is_valid;

}

//------------------------------------------------------------------------------------------------------------------------------------------------

function validateForm_NominateBoard(the_form) {
	var is_valid = true;	// we assume it is a valid form
	// custom code can be added to this fucntion if form specific actions are required
	
	// call the standard form validation function
	is_valid = validateForm(the_form);
	
	return is_valid;
}

//------------------------------------------------------------------------------------------------------------------------------------------------

function validateForm_VolunteerBoard(the_form) {
	var is_valid = true;	// we assume it is a valid form
	// custom code can be added to this fucntion if form specific actions are required
	
	// call the standard form validation function
	is_valid = validateForm(the_form);
	
	return is_valid;
}

//------------------------------------------------------------------------------------------------------------------------------------------------

function validateForm_AutoDebit(the_form) {
	var is_valid = true;	// we assume it is a valid form
	// custom code can be added to this fucntion if form specific actions are required
	
	// call the standard form validation function
	is_valid = validateForm(the_form);
	
	return is_valid;
}




//==================================================
// END FORM VALIDATION FUNCTIONS
//==================================================



//==================================================
// START BOARD OF DIRECTORS FORM CODE
//==================================================

function displayForm(element) {
	
	var selected_form;
	if (document.getElementById) {
		selected_form = document.getElementById(element.value);
		// show the form that was selected
		selected_form.style.display = 'block';
		// hide the make selection area
		element.parentNode.parentNode.style.display = 'none';
	}
	
	return;
	
}


//==================================================
// END BOARD OF DIRECTORS FORM CODE
//==================================================





//------------------------------------------------------------------------------------------------------------------------------------------------


//------------------------------------------------------------------------------------------------------------------------------------------------