var PopupCounter=function() {
PopupCounter.initializeBase(this);
this._timeout = 0;
this._userContext = null;
this._succeeded = null;
this._failed = null;
}
PopupCounter.prototype={
_get_path:function() {
 var p = this.get_path();
 if (p) return p;
 else return PopupCounter._staticInstance.get_path();},
GetPopupAlertCount:function(args,succeededCallback, failedCallback, userContext) {
/// <param name="args" type="String">System.String</param>
/// <param name="succeededCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="failedCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="userContext" optional="true" mayBeNull="true"></param>
return this._invoke(this._get_path(), 'GetPopupAlertCount',false,{args:args},succeededCallback,failedCallback,userContext); }}
PopupCounter.registerClass('PopupCounter',Sys.Net.WebServiceProxy);
PopupCounter._staticInstance = new PopupCounter();
PopupCounter.set_path = function(value) {
PopupCounter._staticInstance.set_path(value); }
PopupCounter.get_path = function() { 
/// <value type="String" mayBeNull="true">The service url.</value>
return PopupCounter._staticInstance.get_path();}
PopupCounter.set_timeout = function(value) {
PopupCounter._staticInstance.set_timeout(value); }
PopupCounter.get_timeout = function() { 
/// <value type="Number">The service timeout.</value>
return PopupCounter._staticInstance.get_timeout(); }
PopupCounter.set_defaultUserContext = function(value) { 
PopupCounter._staticInstance.set_defaultUserContext(value); }
PopupCounter.get_defaultUserContext = function() { 
/// <value mayBeNull="true">The service default user context.</value>
return PopupCounter._staticInstance.get_defaultUserContext(); }
PopupCounter.set_defaultSucceededCallback = function(value) { 
 PopupCounter._staticInstance.set_defaultSucceededCallback(value); }
PopupCounter.get_defaultSucceededCallback = function() { 
/// <value type="Function" mayBeNull="true">The service default succeeded callback.</value>
return PopupCounter._staticInstance.get_defaultSucceededCallback(); }
PopupCounter.set_defaultFailedCallback = function(value) { 
PopupCounter._staticInstance.set_defaultFailedCallback(value); }
PopupCounter.get_defaultFailedCallback = function() { 
/// <value type="Function" mayBeNull="true">The service default failed callback.</value>
return PopupCounter._staticInstance.get_defaultFailedCallback(); }
PopupCounter.set_path("/PopupCounter.asmx");
PopupCounter.GetPopupAlertCount= function(args,onSuccess,onFailed,userContext) {
/// <param name="args" type="String">System.String</param>
/// <param name="succeededCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="failedCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="userContext" optional="true" mayBeNull="true"></param>
PopupCounter._staticInstance.GetPopupAlertCount(args,onSuccess,onFailed,userContext); }
