var FormCheckWebService=function() {
FormCheckWebService.initializeBase(this);
this._timeout = 0;
this._userContext = null;
this._succeeded = null;
this._failed = null;
}
FormCheckWebService.prototype={
FreeWordFormCheck:function(freeWord,succeededCallback, failedCallback, userContext) {
return this._invoke(FormCheckWebService.get_path(), 'FreeWordFormCheck',false,{freeWord:freeWord},succeededCallback,failedCallback,userContext); },
CourseNoFormCheck:function(courseNo,succeededCallback, failedCallback, userContext) {
return this._invoke(FormCheckWebService.get_path(), 'CourseNoFormCheck',false,{courseNo:courseNo},succeededCallback,failedCallback,userContext); }}
FormCheckWebService.registerClass('FormCheckWebService',Sys.Net.WebServiceProxy);
FormCheckWebService._staticInstance = new FormCheckWebService();
FormCheckWebService.set_path = function(value) { FormCheckWebService._staticInstance._path = value; }
FormCheckWebService.get_path = function() { return FormCheckWebService._staticInstance._path; }
FormCheckWebService.set_timeout = function(value) { FormCheckWebService._staticInstance._timeout = value; }
FormCheckWebService.get_timeout = function() { return FormCheckWebService._staticInstance._timeout; }
FormCheckWebService.set_defaultUserContext = function(value) { FormCheckWebService._staticInstance._userContext = value; }
FormCheckWebService.get_defaultUserContext = function() { return FormCheckWebService._staticInstance._userContext; }
FormCheckWebService.set_defaultSucceededCallback = function(value) { FormCheckWebService._staticInstance._succeeded = value; }
FormCheckWebService.get_defaultSucceededCallback = function() { return FormCheckWebService._staticInstance._succeeded; }
FormCheckWebService.set_defaultFailedCallback = function(value) { FormCheckWebService._staticInstance._failed = value; }
FormCheckWebService.get_defaultFailedCallback = function() { return FormCheckWebService._staticInstance._failed; }
FormCheckWebService.set_path("/pkg/WebService/FormCheckWebService.asmx");
FormCheckWebService.FreeWordFormCheck= function(freeWord,onSuccess,onFailed,userContext) {FormCheckWebService._staticInstance.FreeWordFormCheck(freeWord,onSuccess,onFailed,userContext); }
FormCheckWebService.CourseNoFormCheck= function(courseNo,onSuccess,onFailed,userContext) {FormCheckWebService._staticInstance.CourseNoFormCheck(courseNo,onSuccess,onFailed,userContext); }

