var General=function() {
General.initializeBase(this);
this._timeout = 0;
this._userContext = null;
this._succeeded = null;
this._failed = null;
}
General.prototype={
GetSearchNames:function(prefixText,count,succeededCallback, failedCallback, userContext) {
return this._invoke(General.get_path(), 'GetSearchNames',false,{prefixText:prefixText,count:count},succeededCallback,failedCallback,userContext); },
GetEventNamesList:function(prefixText,count,succeededCallback, failedCallback, userContext) {
return this._invoke(General.get_path(), 'GetEventNamesList',false,{prefixText:prefixText,count:count},succeededCallback,failedCallback,userContext); },
GetVenueNameList:function(prefixText,count,succeededCallback, failedCallback, userContext) {
return this._invoke(General.get_path(), 'GetVenueNameList',false,{prefixText:prefixText,count:count},succeededCallback,failedCallback,userContext); },
GetCityStateNameList:function(prefixText,count,succeededCallback, failedCallback, userContext) {
return this._invoke(General.get_path(), 'GetCityStateNameList',false,{prefixText:prefixText,count:count},succeededCallback,failedCallback,userContext); },
GetEventPhotos:function(eventId,succeededCallback, failedCallback, userContext) {
return this._invoke(General.get_path(), 'GetEventPhotos',false,{eventId:eventId},succeededCallback,failedCallback,userContext); },
Search_Keywords:function(prefixText,count,succeededCallback, failedCallback, userContext) {
return this._invoke(General.get_path(), 'Search_Keywords',false,{prefixText:prefixText,count:count},succeededCallback,failedCallback,userContext); },
GetPremiumEvents:function(succeededCallback, failedCallback, userContext) {
return this._invoke(General.get_path(), 'GetPremiumEvents',false,{},succeededCallback,failedCallback,userContext); }}
General.registerClass('General',Sys.Net.WebServiceProxy);
General._staticInstance = new General();
General.set_path = function(value) { 
var e = Function._validateParams(arguments, [{name: 'path', type: String}]); if (e) throw e; General._staticInstance._path = value; }
General.get_path = function() { return General._staticInstance._path; }
General.set_timeout = function(value) { var e = Function._validateParams(arguments, [{name: 'timeout', type: Number}]); if (e) throw e; if (value < 0) { throw Error.argumentOutOfRange('value', value, Sys.Res.invalidTimeout); }
General._staticInstance._timeout = value; }
General.get_timeout = function() { 
return General._staticInstance._timeout; }
General.set_defaultUserContext = function(value) { 
General._staticInstance._userContext = value; }
General.get_defaultUserContext = function() { 
return General._staticInstance._userContext; }
General.set_defaultSucceededCallback = function(value) { 
var e = Function._validateParams(arguments, [{name: 'defaultSucceededCallback', type: Function}]); if (e) throw e; General._staticInstance._succeeded = value; }
General.get_defaultSucceededCallback = function() { 
return General._staticInstance._succeeded; }
General.set_defaultFailedCallback = function(value) { 
var e = Function._validateParams(arguments, [{name: 'defaultFailedCallback', type: Function}]); if (e) throw e; General._staticInstance._failed = value; }
General.get_defaultFailedCallback = function() { 
return General._staticInstance._failed; }
General.set_path("/Services/General.asmx");
General.GetSearchNames= function(prefixText,count,onSuccess,onFailed,userContext) {General._staticInstance.GetSearchNames(prefixText,count,onSuccess,onFailed,userContext); }
General.GetEventNamesList= function(prefixText,count,onSuccess,onFailed,userContext) {General._staticInstance.GetEventNamesList(prefixText,count,onSuccess,onFailed,userContext); }
General.GetVenueNameList= function(prefixText,count,onSuccess,onFailed,userContext) {General._staticInstance.GetVenueNameList(prefixText,count,onSuccess,onFailed,userContext); }
General.GetCityStateNameList= function(prefixText,count,onSuccess,onFailed,userContext) {General._staticInstance.GetCityStateNameList(prefixText,count,onSuccess,onFailed,userContext); }
General.GetEventPhotos= function(eventId,onSuccess,onFailed,userContext) {General._staticInstance.GetEventPhotos(eventId,onSuccess,onFailed,userContext); }
General.Search_Keywords= function(prefixText,count,onSuccess,onFailed,userContext) {General._staticInstance.Search_Keywords(prefixText,count,onSuccess,onFailed,userContext); }
General.GetPremiumEvents= function(onSuccess,onFailed,userContext) {General._staticInstance.GetPremiumEvents(onSuccess,onFailed,userContext); }
