addNamespace("GreenTreeSoft.WebSiteUI.VIP");
GreenTreeSoft.WebSiteUI.VIP.FirmCard_class = Class.create();
GreenTreeSoft.WebSiteUI.VIP.FirmCard_class.prototype = (new AjaxPro.Request()).extend({
	VerRegCertificate: function(certificateType, strCertificateNo, callback) {
		return this.invoke("VerRegCertificate", {"certificateType":certificateType, "strCertificateNo":strCertificateNo}, callback);
	},
	VerHaveSameMobile: function(strMobile, callback) {
		return this.invoke("VerHaveSameMobile", {"strMobile":strMobile}, callback);
	},
	VerEmail: function(strEmail, callback) {
		return this.invoke("VerEmail", {"strEmail":strEmail}, callback);
	},
	initialize: function() {
		this.url = "/ajaxpro/GreenTreeSoft.WebSiteUI.VIP.FirmCard,GreenTreeSoft.WebSiteUI.ashx";
	}
})
GreenTreeSoft.WebSiteUI.VIP.FirmCard = new GreenTreeSoft.WebSiteUI.VIP.FirmCard_class();


