var WebService=function() {
WebService.initializeBase(this);
this._timeout = 0;
this._userContext = null;
this._succeeded = null;
this._failed = null;
}
WebService.prototype={
_get_path:function() {
 var p = this.get_path();
 if (p) return p;
 else return WebService._staticInstance.get_path();},
AddPortfolioFilter:function(name,succeededCallback, failedCallback, userContext) {
return this._invoke(this._get_path(), 'AddPortfolioFilter',false,{name:name},succeededCallback,failedCallback,userContext); },
UpdatePortfolioFilter:function(id,name,succeededCallback, failedCallback, userContext) {
return this._invoke(this._get_path(), 'UpdatePortfolioFilter',false,{id:id,name:name},succeededCallback,failedCallback,userContext); },
DeletePortfolioFilter:function(id,succeededCallback, failedCallback, userContext) {
return this._invoke(this._get_path(), 'DeletePortfolioFilter',false,{id:id},succeededCallback,failedCallback,userContext); },
MovePortfolioPriority:function(id,direction,succeededCallback, failedCallback, userContext) {
return this._invoke(this._get_path(), 'MovePortfolioPriority',false,{id:id,direction:direction},succeededCallback,failedCallback,userContext); },
AddPortfolioSpec:function(name,succeededCallback, failedCallback, userContext) {
return this._invoke(this._get_path(), 'AddPortfolioSpec',false,{name:name},succeededCallback,failedCallback,userContext); },
UpdatePortfolioSpec:function(id,name,succeededCallback, failedCallback, userContext) {
return this._invoke(this._get_path(), 'UpdatePortfolioSpec',false,{id:id,name:name},succeededCallback,failedCallback,userContext); },
DeletePortfolioSpec:function(id,succeededCallback, failedCallback, userContext) {
return this._invoke(this._get_path(), 'DeletePortfolioSpec',false,{id:id},succeededCallback,failedCallback,userContext); },
MovePortfolioSpecPriority:function(id,direction,succeededCallback, failedCallback, userContext) {
return this._invoke(this._get_path(), 'MovePortfolioSpecPriority',false,{id:id,direction:direction},succeededCallback,failedCallback,userContext); },
AddBlogAuthor:function(name,succeededCallback, failedCallback, userContext) {
return this._invoke(this._get_path(), 'AddBlogAuthor',false,{name:name},succeededCallback,failedCallback,userContext); },
UpdateBlogAuthor:function(id,name,succeededCallback, failedCallback, userContext) {
return this._invoke(this._get_path(), 'UpdateBlogAuthor',false,{id:id,name:name},succeededCallback,failedCallback,userContext); },
DeleteBlogAuthor:function(id,succeededCallback, failedCallback, userContext) {
return this._invoke(this._get_path(), 'DeleteBlogAuthor',false,{id:id},succeededCallback,failedCallback,userContext); },
MoveBlogAuthorPriority:function(id,direction,succeededCallback, failedCallback, userContext) {
return this._invoke(this._get_path(), 'MoveBlogAuthorPriority',false,{id:id,direction:direction},succeededCallback,failedCallback,userContext); },
AddBlogCategory:function(name,succeededCallback, failedCallback, userContext) {
return this._invoke(this._get_path(), 'AddBlogCategory',false,{name:name},succeededCallback,failedCallback,userContext); },
UpdateBlogCategory:function(id,name,succeededCallback, failedCallback, userContext) {
return this._invoke(this._get_path(), 'UpdateBlogCategory',false,{id:id,name:name},succeededCallback,failedCallback,userContext); },
DeleteBlogCategory:function(id,succeededCallback, failedCallback, userContext) {
return this._invoke(this._get_path(), 'DeleteBlogCategory',false,{id:id},succeededCallback,failedCallback,userContext); },
MoveBlogCategoryPriority:function(id,direction,succeededCallback, failedCallback, userContext) {
return this._invoke(this._get_path(), 'MoveBlogCategoryPriority',false,{id:id,direction:direction},succeededCallback,failedCallback,userContext); },
AddBlogTag:function(name,succeededCallback, failedCallback, userContext) {
return this._invoke(this._get_path(), 'AddBlogTag',false,{name:name},succeededCallback,failedCallback,userContext); },
UpdateBlogTag:function(id,name,succeededCallback, failedCallback, userContext) {
return this._invoke(this._get_path(), 'UpdateBlogTag',false,{id:id,name:name},succeededCallback,failedCallback,userContext); },
DeleteBlogTag:function(id,succeededCallback, failedCallback, userContext) {
return this._invoke(this._get_path(), 'DeleteBlogTag',false,{id:id},succeededCallback,failedCallback,userContext); },
MoveBlogTagPriority:function(id,direction,succeededCallback, failedCallback, userContext) {
return this._invoke(this._get_path(), 'MoveBlogTagPriority',false,{id:id,direction:direction},succeededCallback,failedCallback,userContext); },
SendRequestForProposalEmail:function(name,email,telephone,company,url,companyDo,startDate,endDate,budget,projectType,job,likeCurrently,notLikeCurrently,cms,tracking,target,majorCompetitors,better,lookFeel,likeWebsites,materials,comments,succeededCallback, failedCallback, userContext) {
return this._invoke(this._get_path(), 'SendRequestForProposalEmail',false,{name:name,email:email,telephone:telephone,company:company,url:url,companyDo:companyDo,startDate:startDate,endDate:endDate,budget:budget,projectType:projectType,job:job,likeCurrently:likeCurrently,notLikeCurrently:notLikeCurrently,cms:cms,tracking:tracking,target:target,majorCompetitors:majorCompetitors,better:better,lookFeel:lookFeel,likeWebsites:likeWebsites,materials:materials,comments:comments},succeededCallback,failedCallback,userContext); }}
WebService.registerClass('WebService',Sys.Net.WebServiceProxy);
WebService._staticInstance = new WebService();
WebService.set_path = function(value) { WebService._staticInstance.set_path(value); }
WebService.get_path = function() { return WebService._staticInstance.get_path(); }
WebService.set_timeout = function(value) { WebService._staticInstance.set_timeout(value); }
WebService.get_timeout = function() { return WebService._staticInstance.get_timeout(); }
WebService.set_defaultUserContext = function(value) { WebService._staticInstance.set_defaultUserContext(value); }
WebService.get_defaultUserContext = function() { return WebService._staticInstance.get_defaultUserContext(); }
WebService.set_defaultSucceededCallback = function(value) { WebService._staticInstance.set_defaultSucceededCallback(value); }
WebService.get_defaultSucceededCallback = function() { return WebService._staticInstance.get_defaultSucceededCallback(); }
WebService.set_defaultFailedCallback = function(value) { WebService._staticInstance.set_defaultFailedCallback(value); }
WebService.get_defaultFailedCallback = function() { return WebService._staticInstance.get_defaultFailedCallback(); }
WebService.set_enableJsonp = function(value) { WebService._staticInstance.set_enableJsonp(value); }
WebService.get_enableJsonp = function() { return WebService._staticInstance.get_enableJsonp(); }
WebService.set_jsonpCallbackParameter = function(value) { WebService._staticInstance.set_jsonpCallbackParameter(value); }
WebService.get_jsonpCallbackParameter = function() { return WebService._staticInstance.get_jsonpCallbackParameter(); }
WebService.set_path("/webservice.asmx");
WebService.AddPortfolioFilter= function(name,onSuccess,onFailed,userContext) {WebService._staticInstance.AddPortfolioFilter(name,onSuccess,onFailed,userContext); }
WebService.UpdatePortfolioFilter= function(id,name,onSuccess,onFailed,userContext) {WebService._staticInstance.UpdatePortfolioFilter(id,name,onSuccess,onFailed,userContext); }
WebService.DeletePortfolioFilter= function(id,onSuccess,onFailed,userContext) {WebService._staticInstance.DeletePortfolioFilter(id,onSuccess,onFailed,userContext); }
WebService.MovePortfolioPriority= function(id,direction,onSuccess,onFailed,userContext) {WebService._staticInstance.MovePortfolioPriority(id,direction,onSuccess,onFailed,userContext); }
WebService.AddPortfolioSpec= function(name,onSuccess,onFailed,userContext) {WebService._staticInstance.AddPortfolioSpec(name,onSuccess,onFailed,userContext); }
WebService.UpdatePortfolioSpec= function(id,name,onSuccess,onFailed,userContext) {WebService._staticInstance.UpdatePortfolioSpec(id,name,onSuccess,onFailed,userContext); }
WebService.DeletePortfolioSpec= function(id,onSuccess,onFailed,userContext) {WebService._staticInstance.DeletePortfolioSpec(id,onSuccess,onFailed,userContext); }
WebService.MovePortfolioSpecPriority= function(id,direction,onSuccess,onFailed,userContext) {WebService._staticInstance.MovePortfolioSpecPriority(id,direction,onSuccess,onFailed,userContext); }
WebService.AddBlogAuthor= function(name,onSuccess,onFailed,userContext) {WebService._staticInstance.AddBlogAuthor(name,onSuccess,onFailed,userContext); }
WebService.UpdateBlogAuthor= function(id,name,onSuccess,onFailed,userContext) {WebService._staticInstance.UpdateBlogAuthor(id,name,onSuccess,onFailed,userContext); }
WebService.DeleteBlogAuthor= function(id,onSuccess,onFailed,userContext) {WebService._staticInstance.DeleteBlogAuthor(id,onSuccess,onFailed,userContext); }
WebService.MoveBlogAuthorPriority= function(id,direction,onSuccess,onFailed,userContext) {WebService._staticInstance.MoveBlogAuthorPriority(id,direction,onSuccess,onFailed,userContext); }
WebService.AddBlogCategory= function(name,onSuccess,onFailed,userContext) {WebService._staticInstance.AddBlogCategory(name,onSuccess,onFailed,userContext); }
WebService.UpdateBlogCategory= function(id,name,onSuccess,onFailed,userContext) {WebService._staticInstance.UpdateBlogCategory(id,name,onSuccess,onFailed,userContext); }
WebService.DeleteBlogCategory= function(id,onSuccess,onFailed,userContext) {WebService._staticInstance.DeleteBlogCategory(id,onSuccess,onFailed,userContext); }
WebService.MoveBlogCategoryPriority= function(id,direction,onSuccess,onFailed,userContext) {WebService._staticInstance.MoveBlogCategoryPriority(id,direction,onSuccess,onFailed,userContext); }
WebService.AddBlogTag= function(name,onSuccess,onFailed,userContext) {WebService._staticInstance.AddBlogTag(name,onSuccess,onFailed,userContext); }
WebService.UpdateBlogTag= function(id,name,onSuccess,onFailed,userContext) {WebService._staticInstance.UpdateBlogTag(id,name,onSuccess,onFailed,userContext); }
WebService.DeleteBlogTag= function(id,onSuccess,onFailed,userContext) {WebService._staticInstance.DeleteBlogTag(id,onSuccess,onFailed,userContext); }
WebService.MoveBlogTagPriority= function(id,direction,onSuccess,onFailed,userContext) {WebService._staticInstance.MoveBlogTagPriority(id,direction,onSuccess,onFailed,userContext); }
WebService.SendRequestForProposalEmail= function(name,email,telephone,company,url,companyDo,startDate,endDate,budget,projectType,job,likeCurrently,notLikeCurrently,cms,tracking,target,majorCompetitors,better,lookFeel,likeWebsites,materials,comments,onSuccess,onFailed,userContext) {WebService._staticInstance.SendRequestForProposalEmail(name,email,telephone,company,url,companyDo,startDate,endDate,budget,projectType,job,likeCurrently,notLikeCurrently,cms,tracking,target,majorCompetitors,better,lookFeel,likeWebsites,materials,comments,onSuccess,onFailed,userContext); }

