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

