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

