var Community_WS=function() {
Community_WS.initializeBase(this);
this._timeout = 0;
this._userContext = null;
this._succeeded = null;
this._failed = null;
}
Community_WS.prototype={
_get_path:function() {
 var p = this.get_path();
 if (p) return p;
 else return Community_WS._staticInstance.get_path();},
CommunityMainPage:function(userId,newsFeedId,statusUpdate,mode,succeededCallback, failedCallback, userContext) {
return this._invoke(this._get_path(), 'CommunityMainPage',false,{userId:userId,newsFeedId:newsFeedId,statusUpdate:statusUpdate,mode:mode},succeededCallback,failedCallback,userContext); },
ViewUserProfilePage:function(myUserId,otherUserId,data,mode,succeededCallback, failedCallback, userContext) {
return this._invoke(this._get_path(), 'ViewUserProfilePage',false,{myUserId:myUserId,otherUserId:otherUserId,data:data,mode:mode},succeededCallback,failedCallback,userContext); },
ChangePassword:function(data,succeededCallback, failedCallback, userContext) {
return this._invoke(this._get_path(), 'ChangePassword',false,{data:data},succeededCallback,failedCallback,userContext); },
ChangePref:function(data,succeededCallback, failedCallback, userContext) {
return this._invoke(this._get_path(), 'ChangePref',false,{data:data},succeededCallback,failedCallback,userContext); },
DeleteAccount:function(userId,succeededCallback, failedCallback, userContext) {
return this._invoke(this._get_path(), 'DeleteAccount',false,{userId:userId},succeededCallback,failedCallback,userContext); }}
Community_WS.registerClass('Community_WS',Sys.Net.WebServiceProxy);
Community_WS._staticInstance = new Community_WS();
Community_WS.set_path = function(value) { Community_WS._staticInstance.set_path(value); }
Community_WS.get_path = function() { return Community_WS._staticInstance.get_path(); }
Community_WS.set_timeout = function(value) { Community_WS._staticInstance.set_timeout(value); }
Community_WS.get_timeout = function() { return Community_WS._staticInstance.get_timeout(); }
Community_WS.set_defaultUserContext = function(value) { Community_WS._staticInstance.set_defaultUserContext(value); }
Community_WS.get_defaultUserContext = function() { return Community_WS._staticInstance.get_defaultUserContext(); }
Community_WS.set_defaultSucceededCallback = function(value) { Community_WS._staticInstance.set_defaultSucceededCallback(value); }
Community_WS.get_defaultSucceededCallback = function() { return Community_WS._staticInstance.get_defaultSucceededCallback(); }
Community_WS.set_defaultFailedCallback = function(value) { Community_WS._staticInstance.set_defaultFailedCallback(value); }
Community_WS.get_defaultFailedCallback = function() { return Community_WS._staticInstance.get_defaultFailedCallback(); }
Community_WS.set_enableJsonp = function(value) { Community_WS._staticInstance.set_enableJsonp(value); }
Community_WS.get_enableJsonp = function() { return Community_WS._staticInstance.get_enableJsonp(); }
Community_WS.set_jsonpCallbackParameter = function(value) { Community_WS._staticInstance.set_jsonpCallbackParameter(value); }
Community_WS.get_jsonpCallbackParameter = function() { return Community_WS._staticInstance.get_jsonpCallbackParameter(); }
Community_WS.set_path("/WebServices/Community_WS.asmx");
Community_WS.CommunityMainPage= function(userId,newsFeedId,statusUpdate,mode,onSuccess,onFailed,userContext) {Community_WS._staticInstance.CommunityMainPage(userId,newsFeedId,statusUpdate,mode,onSuccess,onFailed,userContext); }
Community_WS.ViewUserProfilePage= function(myUserId,otherUserId,data,mode,onSuccess,onFailed,userContext) {Community_WS._staticInstance.ViewUserProfilePage(myUserId,otherUserId,data,mode,onSuccess,onFailed,userContext); }
Community_WS.ChangePassword= function(data,onSuccess,onFailed,userContext) {Community_WS._staticInstance.ChangePassword(data,onSuccess,onFailed,userContext); }
Community_WS.ChangePref= function(data,onSuccess,onFailed,userContext) {Community_WS._staticInstance.ChangePref(data,onSuccess,onFailed,userContext); }
Community_WS.DeleteAccount= function(userId,onSuccess,onFailed,userContext) {Community_WS._staticInstance.DeleteAccount(userId,onSuccess,onFailed,userContext); }

