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

