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();},
postForum:function(strName,strEmail,strSubject,strContent,ipAddress,fatherId,forumId,succeededCallback, failedCallback, userContext) {
return this._invoke(this._get_path(), 'postForum',false,{strName:strName,strEmail:strEmail,strSubject:strSubject,strContent:strContent,ipAddress:ipAddress,fatherId:fatherId,forumId:forumId},succeededCallback,failedCallback,userContext); },
postAgent:function(ipAddress,strName,strPhone,strAge,strEmail,strGender,strCitizen,strStartIn,strTrip,strPrefWork,strVisa,strField0,strField1,strField2,strField3,strField4,strField5,strComment,strRef,strAgree,succeededCallback, failedCallback, userContext) {
return this._invoke(this._get_path(), 'postAgent',false,{ipAddress:ipAddress,strName:strName,strPhone:strPhone,strAge:strAge,strEmail:strEmail,strGender:strGender,strCitizen:strCitizen,strStartIn:strStartIn,strTrip:strTrip,strPrefWork:strPrefWork,strVisa:strVisa,strField0:strField0,strField1:strField1,strField2:strField2,strField3:strField3,strField4:strField4,strField5:strField5,strComment:strComment,strRef:strRef,strAgree:strAgree},succeededCallback,failedCallback,userContext); },
postPartnerComment:function(ipAddress,strName,strEmail,strContent,strFatherId,succeededCallback, failedCallback, userContext) {
return this._invoke(this._get_path(), 'postPartnerComment',false,{ipAddress:ipAddress,strName:strName,strEmail:strEmail,strContent:strContent,strFatherId:strFatherId},succeededCallback,failedCallback,userContext); },
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); },
postInsurance:function(ipAddress,strFName,strLName,strPhone,strEmail,strCountry,succeededCallback, failedCallback, userContext) {
return this._invoke(this._get_path(), 'postInsurance',false,{ipAddress:ipAddress,strFName:strFName,strLName:strLName,strPhone:strPhone,strEmail:strEmail,strCountry:strCountry},succeededCallback,failedCallback,userContext); },
sendToFriend:function(strFriendMail,strName,strEmail,strContent,ipAddress,strUrl,strId,strMode,succeededCallback, failedCallback, userContext) {
return this._invoke(this._get_path(), 'sendToFriend',false,{strFriendMail:strFriendMail,strName:strName,strEmail:strEmail,strContent:strContent,ipAddress:ipAddress,strUrl:strUrl,strId:strId,strMode:strMode},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.postForum= function(strName,strEmail,strSubject,strContent,ipAddress,fatherId,forumId,onSuccess,onFailed,userContext) {sendForm._staticInstance.postForum(strName,strEmail,strSubject,strContent,ipAddress,fatherId,forumId,onSuccess,onFailed,userContext); }
sendForm.postAgent= function(ipAddress,strName,strPhone,strAge,strEmail,strGender,strCitizen,strStartIn,strTrip,strPrefWork,strVisa,strField0,strField1,strField2,strField3,strField4,strField5,strComment,strRef,strAgree,onSuccess,onFailed,userContext) {sendForm._staticInstance.postAgent(ipAddress,strName,strPhone,strAge,strEmail,strGender,strCitizen,strStartIn,strTrip,strPrefWork,strVisa,strField0,strField1,strField2,strField3,strField4,strField5,strComment,strRef,strAgree,onSuccess,onFailed,userContext); }
sendForm.postPartnerComment= function(ipAddress,strName,strEmail,strContent,strFatherId,onSuccess,onFailed,userContext) {sendForm._staticInstance.postPartnerComment(ipAddress,strName,strEmail,strContent,strFatherId,onSuccess,onFailed,userContext); }
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.postInsurance= function(ipAddress,strFName,strLName,strPhone,strEmail,strCountry,onSuccess,onFailed,userContext) {sendForm._staticInstance.postInsurance(ipAddress,strFName,strLName,strPhone,strEmail,strCountry,onSuccess,onFailed,userContext); }
sendForm.sendToFriend= function(strFriendMail,strName,strEmail,strContent,ipAddress,strUrl,strId,strMode,onSuccess,onFailed,userContext) {sendForm._staticInstance.sendToFriend(strFriendMail,strName,strEmail,strContent,ipAddress,strUrl,strId,strMode,onSuccess,onFailed,userContext); }
