var wsProperty=function() {
wsProperty.initializeBase(this);
this._timeout = 0;
this._userContext = null;
this._succeeded = null;
this._failed = null;
}
wsProperty.prototype={
_get_path:function() {
 var p = this.get_path();
 if (p) return p;
 else return wsProperty._staticInstance.get_path();},
LoadTab:function(Status,PropertyId,PageID,Misc,succeededCallback, failedCallback, userContext) {
return this._invoke(this._get_path(), 'LoadTab',false,{Status:Status,PropertyId:PropertyId,PageID:PageID,Misc:Misc},succeededCallback,failedCallback,userContext); }}
wsProperty.registerClass('wsProperty',Sys.Net.WebServiceProxy);
wsProperty._staticInstance = new wsProperty();
wsProperty.set_path = function(value) { wsProperty._staticInstance.set_path(value); }
wsProperty.get_path = function() { return wsProperty._staticInstance.get_path(); }
wsProperty.set_timeout = function(value) { wsProperty._staticInstance.set_timeout(value); }
wsProperty.get_timeout = function() { return wsProperty._staticInstance.get_timeout(); }
wsProperty.set_defaultUserContext = function(value) { wsProperty._staticInstance.set_defaultUserContext(value); }
wsProperty.get_defaultUserContext = function() { return wsProperty._staticInstance.get_defaultUserContext(); }
wsProperty.set_defaultSucceededCallback = function(value) { wsProperty._staticInstance.set_defaultSucceededCallback(value); }
wsProperty.get_defaultSucceededCallback = function() { return wsProperty._staticInstance.get_defaultSucceededCallback(); }
wsProperty.set_defaultFailedCallback = function(value) { wsProperty._staticInstance.set_defaultFailedCallback(value); }
wsProperty.get_defaultFailedCallback = function() { return wsProperty._staticInstance.get_defaultFailedCallback(); }
wsProperty.set_path("/webServices/Property.asmx");
wsProperty.LoadTab= function(Status,PropertyId,PageID,Misc,onSuccess,onFailed,userContext) {wsProperty._staticInstance.LoadTab(Status,PropertyId,PageID,Misc,onSuccess,onFailed,userContext); }
