addNamespace("AJAXRegistrationHelper");
AJAXRegistrationHelper_class = Class.create();
AJAXRegistrationHelper_class.prototype = (new AjaxPro.Request()).extend({
	userExists: function(username, callback) {
		return this.invoke("userExists", {"username":username}, callback);
	},
	emailExists: function(emailAddress, callback) {
		return this.invoke("emailExists", {"emailAddress":emailAddress}, callback);
	},
	initialize: function() {
		this.url = "/ajaxpro/AJAXRegistrationHelper,App_Code.w9eakqdb.ashx";
	}
})
AJAXRegistrationHelper = new AJAXRegistrationHelper_class();

