/*

	del_reg_validator.js
	--------------------

	Validation script for the E2D Delegate Registration form.

	Note that this uses the e2d_common_check.js script
	to check all the commonly occurring elements from
	several forms.

*/


// =============================================================


function del_reg_validator(theForm, codecheck, checkaddr)
{
		
	var allValid = true;
	
	var checkAddress = parseInt(checkaddr) ;

		
	// ------------------------------------------	
	// Check common elements
	// ------------------------------------------
	
	allValid = checkCommonElements(theForm, codecheck, checkAddress) ;
	
	if ( ! allValid ) {
		return (false) ;
	}



	// ------------------------------------------
	// Now check the elements unique to this form
	// ------------------------------------------	
	
	// There are none for this form.
	
	// ------------------------------------------


	// ------------------------------------
	// end of checks
	// ------------------------------------


	return (true);
	
	
}

