Type.registerNamespace('MSInformation');
MSInformation.Extended=function() {
MSInformation.Extended.initializeBase(this);
this._timeout = 0;
this._userContext = null;
this._succeeded = null;
this._failed = null;
}
MSInformation.Extended.prototype={
_get_path:function() {
 var p = this.get_path();
 if (p) return p;
 else return MSInformation.Extended._staticInstance.get_path();},
Impression:function(aid,adw,succeededCallback, failedCallback, userContext) {
return this._invoke(this._get_path(), 'Impression',false,{aid:aid,adw:adw},succeededCallback,failedCallback,userContext); },
Price:function(title,pid,data,intl,succeededCallback, failedCallback, userContext) {
return this._invoke(this._get_path(), 'Price',false,{title:title,pid:pid,data:data,intl:intl},succeededCallback,failedCallback,userContext); }}
MSInformation.Extended.registerClass('MSInformation.Extended',Sys.Net.WebServiceProxy);
MSInformation.Extended._staticInstance = new MSInformation.Extended();
MSInformation.Extended.set_path = function(value) { MSInformation.Extended._staticInstance.set_path(value); }
MSInformation.Extended.get_path = function() { return MSInformation.Extended._staticInstance.get_path(); }
MSInformation.Extended.set_timeout = function(value) { MSInformation.Extended._staticInstance.set_timeout(value); }
MSInformation.Extended.get_timeout = function() { return MSInformation.Extended._staticInstance.get_timeout(); }
MSInformation.Extended.set_defaultUserContext = function(value) { MSInformation.Extended._staticInstance.set_defaultUserContext(value); }
MSInformation.Extended.get_defaultUserContext = function() { return MSInformation.Extended._staticInstance.get_defaultUserContext(); }
MSInformation.Extended.set_defaultSucceededCallback = function(value) { MSInformation.Extended._staticInstance.set_defaultSucceededCallback(value); }
MSInformation.Extended.get_defaultSucceededCallback = function() { return MSInformation.Extended._staticInstance.get_defaultSucceededCallback(); }
MSInformation.Extended.set_defaultFailedCallback = function(value) { MSInformation.Extended._staticInstance.set_defaultFailedCallback(value); }
MSInformation.Extended.get_defaultFailedCallback = function() { return MSInformation.Extended._staticInstance.get_defaultFailedCallback(); }
MSInformation.Extended.set_path("/services/Extended.asmx");
MSInformation.Extended.Impression= function(aid,adw,onSuccess,onFailed,userContext) {MSInformation.Extended._staticInstance.Impression(aid,adw,onSuccess,onFailed,userContext); }
MSInformation.Extended.Price= function(title,pid,data,intl,onSuccess,onFailed,userContext) {MSInformation.Extended._staticInstance.Price(title,pid,data,intl,onSuccess,onFailed,userContext); }
