function do_register(){var jsonRequest=new Request.JSON({url:site_url+'?c=player&m=register',onComplete:function(reply){if(reply.status=='error'){if(reply.errors['email'])$('error_email').setStyle('display','block');else $('error_email').setStyle('display','none');if(reply.errors['email2'])$('error_email2').setStyle('display','block');else $('error_email2').setStyle('display','none');if(reply.errors['username'])$('error_username').setStyle('display','block');else $('error_username').setStyle('display','none');if(reply.errors['password'])$('error_password').setStyle('display','block');else $('error_password').setStyle('display','none');if(reply.errors['age'])$('error_age').setStyle('display','block');else $('error_age').setStyle('display','none');if(reply.errors['gender'])$('error_gender').setStyle('display','block');else $('error_gender').setStyle('display','none');if(reply.errors['country'])$('error_country').setStyle('display','block');else $('error_country').setStyle('display','none');alert('Not all fields are filled in correctly. Please try again.')}else{$('register_intro').setStyle('display','none');$('register_success').setStyle('display','block')}}}).post({'email':$('input_email').value,'username':$('input_username').value,'password':$('input_password').value,'age':$('input_age').value,'gender':$('input_male').getProperty('checked'),'country':$('input_country').value})}window.addEvent('domready',function(){$('register_form').addEvent('submit',function(e){e.stop();do_register()})});
