var CardPopupService=function() {
CardPopupService.initializeBase(this);
this._timeout = 0;
this._userContext = null;
this._succeeded = null;
this._failed = null;
}
CardPopupService.prototype={
GetCardPopupNew:function(SourceElement,CardCacheID,succeededCallback, failedCallback, userContext) {
return this._invoke(CardPopupService.get_path(), 'GetCardPopupNew',false,{SourceElement:SourceElement,CardCacheID:CardCacheID},succeededCallback,failedCallback,userContext); }}
CardPopupService.registerClass('CardPopupService',Sys.Net.WebServiceProxy);
CardPopupService._staticInstance = new CardPopupService();
CardPopupService.set_path = function(value) { CardPopupService._staticInstance._path = value; }
CardPopupService.get_path = function() { return CardPopupService._staticInstance._path; }
CardPopupService.set_timeout = function(value) { CardPopupService._staticInstance._timeout = value; }
CardPopupService.get_timeout = function() { return CardPopupService._staticInstance._timeout; }
CardPopupService.set_defaultUserContext = function(value) { CardPopupService._staticInstance._userContext = value; }
CardPopupService.get_defaultUserContext = function() { return CardPopupService._staticInstance._userContext; }
CardPopupService.set_defaultSucceededCallback = function(value) { CardPopupService._staticInstance._succeeded = value; }
CardPopupService.get_defaultSucceededCallback = function() { return CardPopupService._staticInstance._succeeded; }
CardPopupService.set_defaultFailedCallback = function(value) { CardPopupService._staticInstance._failed = value; }
CardPopupService.get_defaultFailedCallback = function() { return CardPopupService._staticInstance._failed; }
CardPopupService.set_path("/CardPopupService.asmx");
CardPopupService.GetCardPopupNew= function(SourceElement,CardCacheID,onSuccess,onFailed,userContext) {CardPopupService._staticInstance.GetCardPopupNew(SourceElement,CardCacheID,onSuccess,onFailed,userContext); }
