// JavaScript Document

function validate_form ( apply ) {

	if (apply.Client_Email.value == '') {
		alert('You must fill in the email address before submitting.');
		return false;
	} 
	
	else if (apply.captcha.value != 'AB23T') {
		alert('You must fill in the security code at the bottom of the form before submitting.');
		return false;
	} 
	
}
