Master_class = function() {};
Object.extend(Master_class.prototype, Object.extend(new AjaxPro.AjaxClass(), {
	Login: function(uname, pwd) {
		return this.invoke("Login", {"uname":uname, "pwd":pwd}, this.Login.getArguments().slice(2));
	},
	LoginCookie: function(email, pwd, remember) {
		return this.invoke("LoginCookie", {"email":email, "pwd":pwd, "remember":remember}, this.LoginCookie.getArguments().slice(3));
	},
	LogoutCookie: function() {
		return this.invoke("LogoutCookie", {}, this.LogoutCookie.getArguments().slice(0));
	},
	GetPopPageInfo: function(pageId) {
		return this.invoke("GetPopPageInfo", {"pageId":pageId}, this.GetPopPageInfo.getArguments().slice(1));
	},
	SubmitNewsletter: function(fname, lname, email) {
		return this.invoke("SubmitNewsletter", {"fname":fname, "lname":lname, "email":email}, this.SubmitNewsletter.getArguments().slice(3));
	},
	RegisterUser: function(from, seminar, email, pw, fname, lname, company, address, city, zip, state, country, phone, prodinfo) {
		return this.invoke("RegisterUser", {"from":from, "seminar":seminar, "email":email, "pw":pw, "fname":fname, "lname":lname, "company":company, "address":address, "city":city, "zip":zip, "state":state, "country":country, "phone":phone, "prodinfo":prodinfo}, this.RegisterUser.getArguments().slice(14));
	},
	ForgotLogin: function(email) {
		return this.invoke("ForgotLogin", {"email":email}, this.ForgotLogin.getArguments().slice(1));
	},
	Translate: function(txt) {
		return this.invoke("Translate", {"txt":txt}, this.Translate.getArguments().slice(1));
	},
	TranslateArr: function(txt) {
		return this.invoke("TranslateArr", {"txt":txt}, this.TranslateArr.getArguments().slice(1));
	},
	Logout: function() {
		return this.invoke("Logout", {}, this.Logout.getArguments().slice(0));
	},
	RequestPassword: function(uname, email) {
		return this.invoke("RequestPassword", {"uname":uname, "email":email}, this.RequestPassword.getArguments().slice(2));
	},
	url: '/ajaxpro/Master,App_Web_master.cs.3c81b270.jaipqnfg.ashx'
}));
Master = new Master_class();


