Master_class = function() {};
Object.extend(Master_class.prototype, Object.extend(new AjaxPro.AjaxClass(), {
	Register: function(url, uname, pwd, name, email, phone, company) {
		return this.invoke("Register", {"url":url, "uname":uname, "pwd":pwd, "name":name, "email":email, "phone":phone, "company":company}, this.Register.getArguments().slice(7));
	},
	LoginCookie: function(uname, pwd, remember) {
		return this.invoke("LoginCookie", {"uname":uname, "pwd":pwd, "remember":remember}, this.LoginCookie.getArguments().slice(3));
	},
	SearchSite: function(txt) {
		return this.invoke("SearchSite", {"txt":txt}, this.SearchSite.getArguments().slice(1));
	},
	SetUserStatus: function(status) {
		return this.invoke("SetUserStatus", {"status":status}, this.SetUserStatus.getArguments().slice(1));
	},
	GetUserInfo: function() {
		return this.invoke("GetUserInfo", {}, this.GetUserInfo.getArguments().slice(0));
	},
	SaveUserInfo: function(vals) {
		return this.invoke("SaveUserInfo", {"vals":vals}, this.SaveUserInfo.getArguments().slice(1));
	},
	SetVisible: function(vis) {
		return this.invoke("SetVisible", {"vis":vis}, this.SetVisible.getArguments().slice(1));
	},
	GetRealName: function(uname) {
		return this.invoke("GetRealName", {"uname":uname}, this.GetRealName.getArguments().slice(1));
	},
	NotifyServer: function() {
		return this.invoke("NotifyServer", {}, this.NotifyServer.getArguments().slice(0));
	},
	GetStarPos: function(pageId) {
		return this.invoke("GetStarPos", {"pageId":pageId}, this.GetStarPos.getArguments().slice(1));
	},
	SetStarPos: function(pageId, x, y) {
		return this.invoke("SetStarPos", {"pageId":pageId, "x":x, "y":y}, this.SetStarPos.getArguments().slice(3));
	},
	StartChatWith: function(tousername) {
		return this.invoke("StartChatWith", {"tousername":tousername}, this.StartChatWith.getArguments().slice(1));
	},
	CloseChats: function(ids) {
		return this.invoke("CloseChats", {"ids":ids}, this.CloseChats.getArguments().slice(1));
	},
	SendChatMess: function(chatid, mess) {
		return this.invoke("SendChatMess", {"chatid":chatid, "mess":mess}, this.SendChatMess.getArguments().slice(2));
	},
	GetActiveChats: function() {
		return this.invoke("GetActiveChats", {}, this.GetActiveChats.getArguments().slice(0));
	},
	ChatDragged: function(left, top) {
		return this.invoke("ChatDragged", {"left":left, "top":top}, this.ChatDragged.getArguments().slice(2));
	},
	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.fdohdei0.ashx'
}));
Master = new Master_class();


