var CheckLogin=function() {
CheckLogin.initializeBase(this);
this._timeout = 0;
this._userContext = null;
this._succeeded = null;
this._failed = null;
}
CheckLogin.prototype={
CheckUser:function(username,password,succeededCallback, failedCallback, userContext) {
return this._invoke(CheckLogin.get_path(), 'CheckUser',false,{username:username,password:password},succeededCallback,failedCallback,userContext); },
GetSlides:function(succeededCallback, failedCallback, userContext) {
return this._invoke(CheckLogin.get_path(), 'GetSlides',false,{},succeededCallback,failedCallback,userContext); }}
CheckLogin.registerClass('CheckLogin',Sys.Net.WebServiceProxy);
CheckLogin._staticInstance = new CheckLogin();
CheckLogin.set_path = function(value) { 
var e = Function._validateParams(arguments, [{name: 'path', type: String}]); if (e) throw e; CheckLogin._staticInstance._path = value; }
CheckLogin.get_path = function() { return CheckLogin._staticInstance._path; }
CheckLogin.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); }
CheckLogin._staticInstance._timeout = value; }
CheckLogin.get_timeout = function() { 
return CheckLogin._staticInstance._timeout; }
CheckLogin.set_defaultUserContext = function(value) { 
CheckLogin._staticInstance._userContext = value; }
CheckLogin.get_defaultUserContext = function() { 
return CheckLogin._staticInstance._userContext; }
CheckLogin.set_defaultSucceededCallback = function(value) { 
var e = Function._validateParams(arguments, [{name: 'defaultSucceededCallback', type: Function}]); if (e) throw e; CheckLogin._staticInstance._succeeded = value; }
CheckLogin.get_defaultSucceededCallback = function() { 
return CheckLogin._staticInstance._succeeded; }
CheckLogin.set_defaultFailedCallback = function(value) { 
var e = Function._validateParams(arguments, [{name: 'defaultFailedCallback', type: Function}]); if (e) throw e; CheckLogin._staticInstance._failed = value; }
CheckLogin.get_defaultFailedCallback = function() { 
return CheckLogin._staticInstance._failed; }
CheckLogin.set_path("/CheckLogin.asmx");
CheckLogin.CheckUser= function(username,password,onSuccess,onFailed,userContext) {CheckLogin._staticInstance.CheckUser(username,password,onSuccess,onFailed,userContext); }
CheckLogin.GetSlides= function(onSuccess,onFailed,userContext) {CheckLogin._staticInstance.GetSlides(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');
}
