var WebService1=function() {
WebService1.initializeBase(this);
this._timeout = 0;
this._userContext = null;
this._succeeded = null;
this._failed = null;
}
WebService1.prototype={
_get_path:function() {
 var p = this.get_path();
 if (p) return p;
 else return WebService1._staticInstance.get_path();},
UpdatePeopleState:function(fvno,mbid,status,succeededCallback, failedCallback, userContext) {
return this._invoke(this._get_path(), 'UpdatePeopleState',false,{fvno:fvno,mbid:mbid,status:status},succeededCallback,failedCallback,userContext); },
VillMainFile:function(Fvno,succeededCallback, failedCallback, userContext) {
return this._invoke(this._get_path(), 'VillMainFile',false,{Fvno:Fvno},succeededCallback,failedCallback,userContext); },
VillMap:function(strHost,succeededCallback, failedCallback, userContext) {
return this._invoke(this._get_path(), 'VillMap',false,{strHost:strHost},succeededCallback,failedCallback,userContext); },
ImgFileExists:function(path,succeededCallback, failedCallback, userContext) {
return this._invoke(this._get_path(), 'ImgFileExists',false,{path:path},succeededCallback,failedCallback,userContext); },
GetMapPoint:function(fvno,succeededCallback, failedCallback, userContext) {
return this._invoke(this._get_path(), 'GetMapPoint',false,{fvno:fvno},succeededCallback,failedCallback,userContext); }}
WebService1.registerClass('WebService1',Sys.Net.WebServiceProxy);
WebService1._staticInstance = new WebService1();
WebService1.set_path = function(value) { WebService1._staticInstance.set_path(value); }
WebService1.get_path = function() { return WebService1._staticInstance.get_path(); }
WebService1.set_timeout = function(value) { WebService1._staticInstance.set_timeout(value); }
WebService1.get_timeout = function() { return WebService1._staticInstance.get_timeout(); }
WebService1.set_defaultUserContext = function(value) { WebService1._staticInstance.set_defaultUserContext(value); }
WebService1.get_defaultUserContext = function() { return WebService1._staticInstance.get_defaultUserContext(); }
WebService1.set_defaultSucceededCallback = function(value) { WebService1._staticInstance.set_defaultSucceededCallback(value); }
WebService1.get_defaultSucceededCallback = function() { return WebService1._staticInstance.get_defaultSucceededCallback(); }
WebService1.set_defaultFailedCallback = function(value) { WebService1._staticInstance.set_defaultFailedCallback(value); }
WebService1.get_defaultFailedCallback = function() { return WebService1._staticInstance.get_defaultFailedCallback(); }
WebService1.set_path("/Common/WebService1.asmx");
WebService1.UpdatePeopleState= function(fvno,mbid,status,onSuccess,onFailed,userContext) {WebService1._staticInstance.UpdatePeopleState(fvno,mbid,status,onSuccess,onFailed,userContext); }
WebService1.VillMainFile= function(Fvno,onSuccess,onFailed,userContext) {WebService1._staticInstance.VillMainFile(Fvno,onSuccess,onFailed,userContext); }
WebService1.VillMap= function(strHost,onSuccess,onFailed,userContext) {WebService1._staticInstance.VillMap(strHost,onSuccess,onFailed,userContext); }
WebService1.ImgFileExists= function(path,onSuccess,onFailed,userContext) {WebService1._staticInstance.ImgFileExists(path,onSuccess,onFailed,userContext); }
WebService1.GetMapPoint= function(fvno,onSuccess,onFailed,userContext) {WebService1._staticInstance.GetMapPoint(fvno,onSuccess,onFailed,userContext); }
