var get_images=function() {
get_images.initializeBase(this);
this._timeout = 0;
this._userContext = null;
this._succeeded = null;
this._failed = null;
}
get_images.prototype={
_get_path:function() {
 var p = this.get_path();
 if (p) return p;
 else return get_images._staticInstance.get_path();},
get_image_html:function(strQuery,strNumResults,strOffSet,succeededCallback, failedCallback, userContext) {
return this._invoke(this._get_path(), 'get_image_html',false,{strQuery:strQuery,strNumResults:strNumResults,strOffSet:strOffSet},succeededCallback,failedCallback,userContext); }}
get_images.registerClass('get_images',Sys.Net.WebServiceProxy);
get_images._staticInstance = new get_images();
get_images.set_path = function(value) { get_images._staticInstance.set_path(value); }
get_images.get_path = function() { return get_images._staticInstance.get_path(); }
get_images.set_timeout = function(value) { get_images._staticInstance.set_timeout(value); }
get_images.get_timeout = function() { return get_images._staticInstance.get_timeout(); }
get_images.set_defaultUserContext = function(value) { get_images._staticInstance.set_defaultUserContext(value); }
get_images.get_defaultUserContext = function() { return get_images._staticInstance.get_defaultUserContext(); }
get_images.set_defaultSucceededCallback = function(value) { get_images._staticInstance.set_defaultSucceededCallback(value); }
get_images.get_defaultSucceededCallback = function() { return get_images._staticInstance.get_defaultSucceededCallback(); }
get_images.set_defaultFailedCallback = function(value) { get_images._staticInstance.set_defaultFailedCallback(value); }
get_images.get_defaultFailedCallback = function() { return get_images._staticInstance.get_defaultFailedCallback(); }
get_images.set_path("/services/get_images.asmx");
get_images.get_image_html= function(strQuery,strNumResults,strOffSet,onSuccess,onFailed,userContext) {get_images._staticInstance.get_image_html(strQuery,strNumResults,strOffSet,onSuccess,onFailed,userContext); }
