var sendForm=function() {
sendForm.initializeBase(this);
this._timeout = 0;
this._userContext = null;
this._succeeded = null;
this._failed = null;
}
sendForm.prototype={
_get_path:function() {
 var p = this.get_path();
 if (p) return p;
 else return sendForm._staticInstance.get_path();},
postTipComment:function(ipAddress,strName,strEmail,strTitle,strContent,strFatherId,succeededCallback, failedCallback, userContext) {
return this._invoke(this._get_path(), 'postTipComment',false,{ipAddress:ipAddress,strName:strName,strEmail:strEmail,strTitle:strTitle,strContent:strContent,strFatherId:strFatherId},succeededCallback,failedCallback,userContext); },
postTip:function(strName,strEmail,strCountry,strCategory,strSubject,strSubtext,strContent,bAgreeMail,ipAddress,succeededCallback, failedCallback, userContext) {
return this._invoke(this._get_path(), 'postTip',false,{strName:strName,strEmail:strEmail,strCountry:strCountry,strCategory:strCategory,strSubject:strSubject,strSubtext:strSubtext,strContent:strContent,bAgreeMail:bAgreeMail,ipAddress:ipAddress},succeededCallback,failedCallback,userContext); },
postContactUs:function(ipAddress,strName,strPhone,strEmail,strProf,strComment,succeededCallback, failedCallback, userContext) {
return this._invoke(this._get_path(), 'postContactUs',false,{ipAddress:ipAddress,strName:strName,strPhone:strPhone,strEmail:strEmail,strProf:strProf,strComment:strComment},succeededCallback,failedCallback,userContext); }}
sendForm.registerClass('sendForm',Sys.Net.WebServiceProxy);
sendForm._staticInstance = new sendForm();
sendForm.set_path = function(value) { sendForm._staticInstance.set_path(value); }
sendForm.get_path = function() { return sendForm._staticInstance.get_path(); }
sendForm.set_timeout = function(value) { sendForm._staticInstance.set_timeout(value); }
sendForm.get_timeout = function() { return sendForm._staticInstance.get_timeout(); }
sendForm.set_defaultUserContext = function(value) { sendForm._staticInstance.set_defaultUserContext(value); }
sendForm.get_defaultUserContext = function() { return sendForm._staticInstance.get_defaultUserContext(); }
sendForm.set_defaultSucceededCallback = function(value) { sendForm._staticInstance.set_defaultSucceededCallback(value); }
sendForm.get_defaultSucceededCallback = function() { return sendForm._staticInstance.get_defaultSucceededCallback(); }
sendForm.set_defaultFailedCallback = function(value) { sendForm._staticInstance.set_defaultFailedCallback(value); }
sendForm.get_defaultFailedCallback = function() { return sendForm._staticInstance.get_defaultFailedCallback(); }
sendForm.set_path("/services/sendForm.asmx");
sendForm.postTipComment= function(ipAddress,strName,strEmail,strTitle,strContent,strFatherId,onSuccess,onFailed,userContext) {sendForm._staticInstance.postTipComment(ipAddress,strName,strEmail,strTitle,strContent,strFatherId,onSuccess,onFailed,userContext); }
sendForm.postTip= function(strName,strEmail,strCountry,strCategory,strSubject,strSubtext,strContent,bAgreeMail,ipAddress,onSuccess,onFailed,userContext) {sendForm._staticInstance.postTip(strName,strEmail,strCountry,strCategory,strSubject,strSubtext,strContent,bAgreeMail,ipAddress,onSuccess,onFailed,userContext); }
sendForm.postContactUs= function(ipAddress,strName,strPhone,strEmail,strProf,strComment,onSuccess,onFailed,userContext) {sendForm._staticInstance.postContactUs(ipAddress,strName,strPhone,strEmail,strProf,strComment,onSuccess,onFailed,userContext); }

