Type.registerNamespace('top30');
top30.sd=function() {
top30.sd.initializeBase(this);
this._timeout = 0;
this._userContext = null;
this._succeeded = null;
this._failed = null;
}
top30.sd.prototype={
_get_path:function() {
 var p = this.get_path();
 if (p) return p;
 else return top30.sd._staticInstance.get_path();},
GetDetails:function(sLink,sWord,succeededCallback, failedCallback, userContext) {
/// <param name="sLink" type="String">System.String</param>
/// <param name="sWord" type="String">System.String</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(), 'GetDetails',false,{sLink:sLink,sWord:sWord},succeededCallback,failedCallback,userContext); }}
top30.sd.registerClass('top30.sd',Sys.Net.WebServiceProxy);
top30.sd._staticInstance = new top30.sd();
top30.sd.set_path = function(value) {
top30.sd._staticInstance.set_path(value); }
top30.sd.get_path = function() { 
/// <value type="String" mayBeNull="true">The service url.</value>
return top30.sd._staticInstance.get_path();}
top30.sd.set_timeout = function(value) {
top30.sd._staticInstance.set_timeout(value); }
top30.sd.get_timeout = function() { 
/// <value type="Number">The service timeout.</value>
return top30.sd._staticInstance.get_timeout(); }
top30.sd.set_defaultUserContext = function(value) { 
top30.sd._staticInstance.set_defaultUserContext(value); }
top30.sd.get_defaultUserContext = function() { 
/// <value mayBeNull="true">The service default user context.</value>
return top30.sd._staticInstance.get_defaultUserContext(); }
top30.sd.set_defaultSucceededCallback = function(value) { 
 top30.sd._staticInstance.set_defaultSucceededCallback(value); }
top30.sd.get_defaultSucceededCallback = function() { 
/// <value type="Function" mayBeNull="true">The service default succeeded callback.</value>
return top30.sd._staticInstance.get_defaultSucceededCallback(); }
top30.sd.set_defaultFailedCallback = function(value) { 
top30.sd._staticInstance.set_defaultFailedCallback(value); }
top30.sd.get_defaultFailedCallback = function() { 
/// <value type="Function" mayBeNull="true">The service default failed callback.</value>
return top30.sd._staticInstance.get_defaultFailedCallback(); }
top30.sd.set_enableJsonp = function(value) { top30.sd._staticInstance.set_enableJsonp(value); }
top30.sd.get_enableJsonp = function() { 
/// <value type="Boolean">Specifies whether the service supports JSONP for cross domain calling.</value>
return top30.sd._staticInstance.get_enableJsonp(); }
top30.sd.set_jsonpCallbackParameter = function(value) { top30.sd._staticInstance.set_jsonpCallbackParameter(value); }
top30.sd.get_jsonpCallbackParameter = function() { 
/// <value type="String">Specifies the parameter name that contains the callback function name for a JSONP request.</value>
return top30.sd._staticInstance.get_jsonpCallbackParameter(); }
top30.sd.set_path("/sd.asmx");
top30.sd.GetDetails= function(sLink,sWord,onSuccess,onFailed,userContext) {
/// <param name="sLink" type="String">System.String</param>
/// <param name="sWord" type="String">System.String</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>
top30.sd._staticInstance.GetDetails(sLink,sWord,onSuccess,onFailed,userContext); }

