addNamespace("sMember_MemberRegist");
sMember_MemberRegist_class = Class.create();
sMember_MemberRegist_class.prototype = (new AjaxPro.Request()).extend({
	CheckUser: function(userid, callback) {
		return this.invoke("CheckUser", {"userid":userid}, callback);
	},
	CheckForm: function(sMemberAccount, problem, answer, callback) {
		return this.invoke("CheckForm", {"sMemberAccount":sMemberAccount, "problem":problem, "answer":answer}, callback);
	},
	SubmitForm: function(sMemberAccount, MemberPassword, sAccountType, sEmail, sSuggestProblem, sSuggestAnswer, callback) {
		return this.invoke("SubmitForm", {"sMemberAccount":sMemberAccount, "MemberPassword":MemberPassword, "sAccountType":sAccountType, "sEmail":sEmail, "sSuggestProblem":sSuggestProblem, "sSuggestAnswer":sSuggestAnswer}, callback);
	},
	CheckImgCode: function(txt_code, callback) {
		return this.invoke("CheckImgCode", {"txt_code":txt_code}, callback);
	},
	initialize: function() {
		this.url = "/ajaxpro/sMember_MemberRegist,App_Web__g8e3gfx.ashx";
	}
})
sMember_MemberRegist = new sMember_MemberRegist_class();

