var RcpSvc=function() {
RcpSvc.initializeBase(this);
this._timeout = 0;
this._userContext = null;
this._succeeded = null;
this._failed = null;
}
RcpSvc.prototype={
HelloWorld:function(succeededCallback, failedCallback, userContext) {
return this._invoke(RcpSvc.get_path(), 'HelloWorld',false,{},succeededCallback,failedCallback,userContext); },
PostReview:function(sUser,nRecipeId,nRating,sReview,ItemType,sItemName,succeededCallback, failedCallback, userContext) {
return this._invoke(RcpSvc.get_path(), 'PostReview',false,{sUser:sUser,nRecipeId:nRecipeId,nRating:nRating,sReview:sReview,ItemType:ItemType,sItemName:sItemName},succeededCallback,failedCallback,userContext); },
FlagReview:function(nReviewId,sUser,nFlagas,succeededCallback, failedCallback, userContext) {
return this._invoke(RcpSvc.get_path(), 'FlagReview',false,{nReviewId:nReviewId,sUser:sUser,nFlagas:nFlagas},succeededCallback,failedCallback,userContext); },
MailToFriend:function(nRecipeId,sMailTo,sUser,succeededCallback, failedCallback, userContext) {
return this._invoke(RcpSvc.get_path(), 'MailToFriend',false,{nRecipeId:nRecipeId,sMailTo:sMailTo,sUser:sUser},succeededCallback,failedCallback,userContext); },
MailRecipe:function(membername,mailto,matter,rcpid,succeededCallback, failedCallback, userContext) {
return this._invoke(RcpSvc.get_path(), 'MailRecipe',false,{membername:membername,mailto:mailto,matter:matter,rcpid:rcpid},succeededCallback,failedCallback,userContext); },
GetPhotos:function(contextKey,succeededCallback, failedCallback, userContext) {
return this._invoke(RcpSvc.get_path(), 'GetPhotos',false,{contextKey:contextKey},succeededCallback,failedCallback,userContext); }}
RcpSvc.registerClass('RcpSvc',Sys.Net.WebServiceProxy);
RcpSvc._staticInstance = new RcpSvc();
RcpSvc.set_path = function(value) { 
var e = Function._validateParams(arguments, [{name: 'path', type: String}]); if (e) throw e; RcpSvc._staticInstance._path = value; }
RcpSvc.get_path = function() { return RcpSvc._staticInstance._path; }
RcpSvc.set_timeout = function(value) { var e = Function._validateParams(arguments, [{name: 'timeout', type: Number}]); if (e) throw e; if (value < 0) { throw Error.argumentOutOfRange('value', value, Sys.Res.invalidTimeout); }
RcpSvc._staticInstance._timeout = value; }
RcpSvc.get_timeout = function() { 
return RcpSvc._staticInstance._timeout; }
RcpSvc.set_defaultUserContext = function(value) { 
RcpSvc._staticInstance._userContext = value; }
RcpSvc.get_defaultUserContext = function() { 
return RcpSvc._staticInstance._userContext; }
RcpSvc.set_defaultSucceededCallback = function(value) { 
var e = Function._validateParams(arguments, [{name: 'defaultSucceededCallback', type: Function}]); if (e) throw e; RcpSvc._staticInstance._succeeded = value; }
RcpSvc.get_defaultSucceededCallback = function() { 
return RcpSvc._staticInstance._succeeded; }
RcpSvc.set_defaultFailedCallback = function(value) { 
var e = Function._validateParams(arguments, [{name: 'defaultFailedCallback', type: Function}]); if (e) throw e; RcpSvc._staticInstance._failed = value; }
RcpSvc.get_defaultFailedCallback = function() { 
return RcpSvc._staticInstance._failed; }
RcpSvc.set_path("/svc/RcpSvc.asmx");
RcpSvc.HelloWorld= function(onSuccess,onFailed,userContext) {RcpSvc._staticInstance.HelloWorld(onSuccess,onFailed,userContext); }
RcpSvc.PostReview= function(sUser,nRecipeId,nRating,sReview,ItemType,sItemName,onSuccess,onFailed,userContext) {RcpSvc._staticInstance.PostReview(sUser,nRecipeId,nRating,sReview,ItemType,sItemName,onSuccess,onFailed,userContext); }
RcpSvc.FlagReview= function(nReviewId,sUser,nFlagas,onSuccess,onFailed,userContext) {RcpSvc._staticInstance.FlagReview(nReviewId,sUser,nFlagas,onSuccess,onFailed,userContext); }
RcpSvc.MailToFriend= function(nRecipeId,sMailTo,sUser,onSuccess,onFailed,userContext) {RcpSvc._staticInstance.MailToFriend(nRecipeId,sMailTo,sUser,onSuccess,onFailed,userContext); }
RcpSvc.MailRecipe= function(membername,mailto,matter,rcpid,onSuccess,onFailed,userContext) {RcpSvc._staticInstance.MailRecipe(membername,mailto,matter,rcpid,onSuccess,onFailed,userContext); }
RcpSvc.GetPhotos= function(contextKey,onSuccess,onFailed,userContext) {RcpSvc._staticInstance.GetPhotos(contextKey,onSuccess,onFailed,userContext); }
var gtc = Sys.Net.WebServiceProxy._generateTypedConstructor;
Type.registerNamespace('AjaxControlToolkit');
if (typeof(AjaxControlToolkit.Slide) === 'undefined') {
AjaxControlToolkit.Slide=gtc("AjaxControlToolkit.Slide");
AjaxControlToolkit.Slide.registerClass('AjaxControlToolkit.Slide');
}

