var Service=function() {
Service.initializeBase(this);
this._timeout = 0;
this._userContext = null;
this._succeeded = null;
this._failed = null;
}
Service.prototype={
GetGender:function(title,succeededCallback, failedCallback, userContext) {
return this._invoke(Service.get_path(), 'GetGender',false,{title:title},succeededCallback,failedCallback,userContext); },
GetMissingFormData:function(succeededCallback, failedCallback, userContext) {
return this._invoke(Service.get_path(), 'GetMissingFormData',false,{},succeededCallback,failedCallback,userContext); }}
Service.registerClass('Service',Sys.Net.WebServiceProxy);
Service._staticInstance = new Service();
Service.set_path = function(value) { Service._staticInstance._path = value; }
Service.get_path = function() { return Service._staticInstance._path; }
Service.set_timeout = function(value) { Service._staticInstance._timeout = value; }
Service.get_timeout = function() { return Service._staticInstance._timeout; }
Service.set_defaultUserContext = function(value) { Service._staticInstance._userContext = value; }
Service.get_defaultUserContext = function() { return Service._staticInstance._userContext; }
Service.set_defaultSucceededCallback = function(value) { Service._staticInstance._succeeded = value; }
Service.get_defaultSucceededCallback = function() { return Service._staticInstance._succeeded; }
Service.set_defaultFailedCallback = function(value) { Service._staticInstance._failed = value; }
Service.get_defaultFailedCallback = function() { return Service._staticInstance._failed; }
Service.set_path("/Service.asmx");
Service.GetGender= function(title,onSuccess,onFailed,userContext) {Service._staticInstance.GetGender(title,onSuccess,onFailed,userContext); }
Service.GetMissingFormData= function(onSuccess,onFailed,userContext) {Service._staticInstance.GetMissingFormData(onSuccess,onFailed,userContext); }
var gtc = Sys.Net.WebServiceProxy._generateTypedConstructor;
if (typeof(Service_MissingDataResponse) === 'undefined') {
var Service_MissingDataResponse=gtc("Service+MissingDataResponse");
Service_MissingDataResponse.registerClass('Service_MissingDataResponse');
}

