var ScriptWebService=function() {
ScriptWebService.initializeBase(this);
this._timeout = 0;
this._userContext = null;
this._succeeded = null;
this._failed = null;
}
ScriptWebService.prototype={
_get_path:function() {
 var p = this.get_path();
 if (p) return p;
 else return ScriptWebService._staticInstance.get_path();},
GetBrief:function(div,ID,succeededCallback, failedCallback, userContext) {
/// <param name="div" type="String">System.String</param>
/// <param name="ID" type="Number">System.Int32</param>
/// <param name="succeededCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="failedCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="userContext" optional="true" mayBeNull="true"></param>
return this._invoke(this._get_path(), 'GetBrief',false,{div:div,ID:ID},succeededCallback,failedCallback,userContext); }}
ScriptWebService.registerClass('ScriptWebService',Sys.Net.WebServiceProxy);
ScriptWebService._staticInstance = new ScriptWebService();
ScriptWebService.set_path = function(value) {
ScriptWebService._staticInstance.set_path(value); }
ScriptWebService.get_path = function() { 
/// <value type="String" mayBeNull="true">The service url.</value>
return ScriptWebService._staticInstance.get_path();}
ScriptWebService.set_timeout = function(value) {
ScriptWebService._staticInstance.set_timeout(value); }
ScriptWebService.get_timeout = function() { 
/// <value type="Number">The service timeout.</value>
return ScriptWebService._staticInstance.get_timeout(); }
ScriptWebService.set_defaultUserContext = function(value) { 
ScriptWebService._staticInstance.set_defaultUserContext(value); }
ScriptWebService.get_defaultUserContext = function() { 
/// <value mayBeNull="true">The service default user context.</value>
return ScriptWebService._staticInstance.get_defaultUserContext(); }
ScriptWebService.set_defaultSucceededCallback = function(value) { 
 ScriptWebService._staticInstance.set_defaultSucceededCallback(value); }
ScriptWebService.get_defaultSucceededCallback = function() { 
/// <value type="Function" mayBeNull="true">The service default succeeded callback.</value>
return ScriptWebService._staticInstance.get_defaultSucceededCallback(); }
ScriptWebService.set_defaultFailedCallback = function(value) { 
ScriptWebService._staticInstance.set_defaultFailedCallback(value); }
ScriptWebService.get_defaultFailedCallback = function() { 
/// <value type="Function" mayBeNull="true">The service default failed callback.</value>
return ScriptWebService._staticInstance.get_defaultFailedCallback(); }
ScriptWebService.set_path("/ScriptWebService.asmx");
ScriptWebService.GetBrief= function(div,ID,onSuccess,onFailed,userContext) {
/// <param name="div" type="String">System.String</param>
/// <param name="ID" type="Number">System.Int32</param>
/// <param name="succeededCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="failedCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="userContext" optional="true" mayBeNull="true"></param>
ScriptWebService._staticInstance.GetBrief(div,ID,onSuccess,onFailed,userContext); }

