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