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