var authWS=function() {
authWS.initializeBase(this);
this._timeout = 0;
this._userContext = null;
this._succeeded = null;
this._failed = null;
}
authWS.prototype={
Register:function(username,password,email,promo,succeededCallback, failedCallback, userContext) {
return this._invoke(authWS.get_path(), 'Register',false,{username:username,password:password,email:email,promo:promo},succeededCallback,failedCallback,userContext); },
Signout:function(succeededCallback, failedCallback, userContext) {
return this._invoke(authWS.get_path(), 'Signout',false,{},succeededCallback,failedCallback,userContext); },
Signin:function(userName,password,rememberMe,succeededCallback, failedCallback, userContext) {
return this._invoke(authWS.get_path(), 'Signin',false,{userName:userName,password:password,rememberMe:rememberMe},succeededCallback,failedCallback,userContext); }}
authWS.registerClass('authWS',Sys.Net.WebServiceProxy);
authWS._staticInstance = new authWS();
authWS.set_path = function(value) { authWS._staticInstance._path = value; }
authWS.get_path = function() { return authWS._staticInstance._path; }
authWS.set_timeout = function(value) { authWS._staticInstance._timeout = value; }
authWS.get_timeout = function() { return authWS._staticInstance._timeout; }
authWS.set_defaultUserContext = function(value) { authWS._staticInstance._userContext = value; }
authWS.get_defaultUserContext = function() { return authWS._staticInstance._userContext; }
authWS.set_defaultSucceededCallback = function(value) { authWS._staticInstance._succeeded = value; }
authWS.get_defaultSucceededCallback = function() { return authWS._staticInstance._succeeded; }
authWS.set_defaultFailedCallback = function(value) { authWS._staticInstance._failed = value; }
authWS.get_defaultFailedCallback = function() { return authWS._staticInstance._failed; }
authWS.set_path("/services/authWS.asmx");
authWS.Register= function(username,password,email,promo,onSuccess,onFailed,userContext) {authWS._staticInstance.Register(username,password,email,promo,onSuccess,onFailed,userContext); }
authWS.Signout= function(onSuccess,onFailed,userContext) {authWS._staticInstance.Signout(onSuccess,onFailed,userContext); }
authWS.Signin= function(userName,password,rememberMe,onSuccess,onFailed,userContext) {authWS._staticInstance.Signin(userName,password,rememberMe,onSuccess,onFailed,userContext); }
