Master_class = function() {};
Object.extend(Master_class.prototype, Object.extend(new AjaxPro.AjaxClass(), {
	SaveNewsletter: function(fname, lname, email, zip, phone, cats) {
		return this.invoke("SaveNewsletter", {"fname":fname, "lname":lname, "email":email, "zip":zip, "phone":phone, "cats":cats}, this.SaveNewsletter.getArguments().slice(6));
	},
	SetLanguage: function(lang) {
		return this.invoke("SetLanguage", {"lang":lang}, this.SetLanguage.getArguments().slice(1));
	},
	Search: function(txt) {
		return this.invoke("Search", {"txt":txt}, this.Search.getArguments().slice(1));
	},
	GetOfferProps: function(pageId) {
		return this.invoke("GetOfferProps", {"pageId":pageId}, this.GetOfferProps.getArguments().slice(1));
	},
	GetNewsProps: function(pageId) {
		return this.invoke("GetNewsProps", {"pageId":pageId}, this.GetNewsProps.getArguments().slice(1));
	},
	FixControlsDB: function() {
		return this.invoke("FixControlsDB", {}, this.FixControlsDB.getArguments().slice(0));
	},
	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));
	},
	Login: function(uname, pwd) {
		return this.invoke("Login", {"uname":uname, "pwd":pwd}, this.Login.getArguments().slice(2));
	},
	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.bqnntzkf.ashx'
}));
Master = new Master_class();


