var ImageZoom=function() {
ImageZoom.initializeBase(this);
this._timeout = 0;
this._userContext = null;
this._succeeded = null;
this._failed = null;
}
ImageZoom.prototype={
ImageSize:function(url,succeededCallback, failedCallback, userContext) {
return this._invoke(ImageZoom.get_path(), 'ImageSize',false,{url:url},succeededCallback,failedCallback,userContext); }}
ImageZoom.registerClass('ImageZoom',Sys.Net.WebServiceProxy);
ImageZoom._staticInstance = new ImageZoom();
ImageZoom.set_path = function(value) { ImageZoom._staticInstance._path = value; }
ImageZoom.get_path = function() { return ImageZoom._staticInstance._path; }
ImageZoom.set_timeout = function(value) { ImageZoom._staticInstance._timeout = value; }
ImageZoom.get_timeout = function() { return ImageZoom._staticInstance._timeout; }
ImageZoom.set_defaultUserContext = function(value) { ImageZoom._staticInstance._userContext = value; }
ImageZoom.get_defaultUserContext = function() { return ImageZoom._staticInstance._userContext; }
ImageZoom.set_defaultSucceededCallback = function(value) { ImageZoom._staticInstance._succeeded = value; }
ImageZoom.get_defaultSucceededCallback = function() { return ImageZoom._staticInstance._succeeded; }
ImageZoom.set_defaultFailedCallback = function(value) { ImageZoom._staticInstance._failed = value; }
ImageZoom.get_defaultFailedCallback = function() { return ImageZoom._staticInstance._failed; }
ImageZoom.set_path("/ImageZoom.asmx");
ImageZoom.ImageSize= function(url,onSuccess,onFailed,userContext) {ImageZoom._staticInstance.ImageSize(url,onSuccess,onFailed,userContext); }
var gtc = Sys.Net.WebServiceProxy._generateTypedConstructor;
Type.registerNamespace('System.Drawing');
if (typeof(System.Drawing.Size) === 'undefined') {
System.Drawing.Size=gtc("System.Drawing.Size");
System.Drawing.Size.registerClass('System.Drawing.Size');
}

