if(typeof TTWU == "undefined") TTWU={};
if(typeof TTWU.Components == "undefined") TTWU.Components={};
if(typeof TTWU.Components.UserManager == "undefined") TTWU.Components.UserManager={};
TTWU.Components.UserManager_class = function() {};
Object.extend(TTWU.Components.UserManager_class.prototype, Object.extend(new AjaxPro.AjaxClass(), {
	CheckUserContact: function(mobile, phone) {
		return this.invoke("CheckUserContact", {"mobile":mobile, "phone":phone}, this.CheckUserContact.getArguments().slice(2));
	},
	DeleteMessage: function(msgIDs, status) {
		return this.invoke("DeleteMessage", {"msgIDs":msgIDs, "status":status}, this.DeleteMessage.getArguments().slice(2));
	},
	GetMessage: function(id, status) {
		return this.invoke("GetMessage", {"id":id, "status":status}, this.GetMessage.getArguments().slice(2));
	},
	CheckEmailExists: function(email) {
		return this.invoke("CheckEmailExists", {"email":email}, this.CheckEmailExists.getArguments().slice(1));
	},
	CheckUserNameExists: function(username) {
		return this.invoke("CheckUserNameExists", {"username":username}, this.CheckUserNameExists.getArguments().slice(1));
	},
	url: '/ajaxpro/TTWU.Components.UserManager,TTWU.Components.ashx'
}));
TTWU.Components.UserManager = new TTWU.Components.UserManager_class();

