$(document).ready(function() {				
	var msg_f = '' ;
	
	$('#client_reg_form').submit(function(event){

		if( !$('#agree_tc').is(':checked') ) {
			alert ("Tick the box to agree to our terms and conditions") ; 
			return false ;
		}

		var i = 0 ; 
		var fld_name = '' ;
		var flds = 'user_name,user_pass,user_email,region,gender' ; 
		var chk_flds = flds.split(',') ;   

    jQuery.each(chk_flds, function() {
			  fld_name = this.toString() ;
        if( check_field( fld_name ).length>0 ) { 
			    msg_f += check_field( fld_name ) + '\n' ;
				  i++ ;
			  }
			 
     });

		 
		 
	
		// THE MESSAGE IS NOW BUILT  or not
		 if( msg_f.length >0 ) {
			 alert("Please correct the following items to continue: \n\n" + msg_f) ; 
			 msg_f='';
			 return false ;
		 } else {
			 
		 // do the ajax ting 
		  return true
		 }
		 
   }); // end submit
	 


 }); // end doc ready
