function fn_Validate_Acad_Reg_Form(the_form_name){
	// Validate the form
	
	//First validate the captcha
	if(check_form (the_form_name)){
		//Accept captcha value
		
	if(the_form_name.a_first_name.value != ''){
		if(the_form_name.aa_last_name.value != ''){
		if(the_form_name.b_title.value != ''){
			if(the_form_name.c_college.value != ''){
				if(the_form_name.e_address.value != ''){
					if(the_form_name.f_city.value !=''){
						if(the_form_name.g_state.value !=''){
							if(the_form_name.h_zipcode.value !=''){
								if(the_form_name.i_country.value !=''){
								if(the_form_name.j_email.value !=''){
										if(the_form_name.k_phone.value !=''){
											if(the_form_name.n_supervisor_name.value !=''){
												if(the_form_name.o_supervisor_title.value !=''){
													if(the_form_name.p_supervisor_phone.value !=''){
														if(the_form_name.q_supervisor_email.value !=''){
			// Form validated ok
			alert('Form submitted');
			the_form_name.submit();
					}else{
						alert("Supervisor's Email please");
					}
					}else{
						alert("Supervisor's phone please");
					}
					}else{
						alert("Supervisors Title please");
					}
					}else{
						alert("Supervisors Name please");
					}
					}else{
						alert("Phone Number please");
					}
					}else{
						alert("Email please");
					}
					}else{
						alert("Country please");
					}
					}else{
						alert("Zipcode please");
					}
					}else{
						alert("State/Province please");
					}
					}else{
						alert("City please");
					}
					}else{
			   alert("Address please");
			   }
			}else{
			alert("College please");
			}
		}else{
			alert("Title please");
		}
		}else{
		alert("Last Name please");
	}
	}else{
		alert("First Name please");
	}
}else{
	//unacceptable captcha value
	alert("Invalid Squiggly Text");
}
}
