addNamespace("person_regist");
person_regist_class = Class.create();
person_regist_class.prototype = (new AjaxPro.Request()).extend({
	checkUserId: function(userid, callback) {
		return this.invoke("checkUserId", {"userid":userid}, callback);
	},
	checkUserEmail: function(email, callback) {
		return this.invoke("checkUserEmail", {"email":email}, callback);
	},
	initialize: function() {
		this.url = "/ajaxpro/person_regist,App_Web_qb8dgzt3.ashx";
	}
})
person_regist = new person_regist_class();

