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