addNamespace("GreenTreeSoft.WebSiteUI.VIP");
GreenTreeSoft.WebSiteUI.VIP.Reg_class = Class.create();
GreenTreeSoft.WebSiteUI.VIP.Reg_class.prototype = (new AjaxPro.Request()).extend({
	VerLogin: function(temp, callback) {
		return this.invoke("VerLogin", {"temp":temp}, callback);
	},
	BindDay: function(year, month, callback) {
		return this.invoke("BindDay", {"year":year, "month":month}, callback);
	},
	VerEmail: function(strEmail, callback) {
		return this.invoke("VerEmail", {"strEmail":strEmail}, callback);
	},
	VerIDCard: function(strIDCard, callback) {
		return this.invoke("VerIDCard", {"strIDCard":strIDCard}, callback);
	},
	VerMobile: function(strMobile, callback) {
		return this.invoke("VerMobile", {"strMobile":strMobile}, callback);
	},
	VerCertificate: function(certificateType, strCertificateNo, callback) {
		return this.invoke("VerCertificate", {"certificateType":certificateType, "strCertificateNo":strCertificateNo}, callback);
	},
	SendActiveEmail: function(strEmail, callback) {
		return this.invoke("SendActiveEmail", {"strEmail":strEmail}, callback);
	},
	SendActiveMobile: function(strMobile, callback) {
		return this.invoke("SendActiveMobile", {"strMobile":strMobile}, callback);
	},
	initialize: function() {
		this.url = "/ajaxpro/GreenTreeSoft.WebSiteUI.VIP.Reg,GreenTreeSoft.WebSiteUI.ashx";
	}
})
GreenTreeSoft.WebSiteUI.VIP.Reg = new GreenTreeSoft.WebSiteUI.VIP.Reg_class();

