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