MasterPage_class = function() {};
Object.extend(MasterPage_class.prototype, Object.extend(new AjaxPro.AjaxClass(), {
	getPage: function(PageName) {
		return this.invoke("getPage", {"PageName":PageName}, this.getPage.getArguments().slice(1));
	},
	getPageWithParam: function(PageName, param, path) {
		return this.invoke("getPageWithParam", {"PageName":PageName, "param":param, "path":path}, this.getPageWithParam.getArguments().slice(3));
	},
	submitEmail: function(Name, Mobile, Email, Subject, Inquiry) {
		return this.invoke("submitEmail", {"Name":Name, "Mobile":Mobile, "Email":Email, "Subject":Subject, "Inquiry":Inquiry}, this.submitEmail.getArguments().slice(5));
	},
	url: '/ajaxpro/MasterPage,App_Web_t2-e_xj_.ashx'
}));
MasterPage = new MasterPage_class();

