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