var ContactService=function() {
ContactService.initializeBase(this);
this._timeout = 0;
this._userContext = null;
this._succeeded = null;
this._failed = null;
}
ContactService.prototype={
_get_path:function() {
 var p = this.get_path();
 if (p) return p;
 else return ContactService._staticInstance.get_path();},
SendGenericContactForm:function(name,companyName,email,phone,questions,succeededCallback, failedCallback, userContext) {
return this._invoke(this._get_path(), 'SendGenericContactForm',false,{name:name,companyName:companyName,email:email,phone:phone,questions:questions},succeededCallback,failedCallback,userContext); },
SendSpecificContactForm:function(name,companyName,email,phone,questions,recipient,succeededCallback, failedCallback, userContext) {
return this._invoke(this._get_path(), 'SendSpecificContactForm',false,{name:name,companyName:companyName,email:email,phone:phone,questions:questions,recipient:recipient},succeededCallback,failedCallback,userContext); },
SendQuoteContactForm:function(name,company,email,phone,questions,succeededCallback, failedCallback, userContext) {
return this._invoke(this._get_path(), 'SendQuoteContactForm',false,{name:name,company:company,email:email,phone:phone,questions:questions},succeededCallback,failedCallback,userContext); }}
ContactService.registerClass('ContactService',Sys.Net.WebServiceProxy);
ContactService._staticInstance = new ContactService();
ContactService.set_path = function(value) { ContactService._staticInstance.set_path(value); }
ContactService.get_path = function() { return ContactService._staticInstance.get_path(); }
ContactService.set_timeout = function(value) { ContactService._staticInstance.set_timeout(value); }
ContactService.get_timeout = function() { return ContactService._staticInstance.get_timeout(); }
ContactService.set_defaultUserContext = function(value) { ContactService._staticInstance.set_defaultUserContext(value); }
ContactService.get_defaultUserContext = function() { return ContactService._staticInstance.get_defaultUserContext(); }
ContactService.set_defaultSucceededCallback = function(value) { ContactService._staticInstance.set_defaultSucceededCallback(value); }
ContactService.get_defaultSucceededCallback = function() { return ContactService._staticInstance.get_defaultSucceededCallback(); }
ContactService.set_defaultFailedCallback = function(value) { ContactService._staticInstance.set_defaultFailedCallback(value); }
ContactService.get_defaultFailedCallback = function() { return ContactService._staticInstance.get_defaultFailedCallback(); }
ContactService.set_path("/services/ContactService.asmx");
ContactService.SendGenericContactForm= function(name,companyName,email,phone,questions,onSuccess,onFailed,userContext) {ContactService._staticInstance.SendGenericContactForm(name,companyName,email,phone,questions,onSuccess,onFailed,userContext); }
ContactService.SendSpecificContactForm= function(name,companyName,email,phone,questions,recipient,onSuccess,onFailed,userContext) {ContactService._staticInstance.SendSpecificContactForm(name,companyName,email,phone,questions,recipient,onSuccess,onFailed,userContext); }
ContactService.SendQuoteContactForm= function(name,company,email,phone,questions,onSuccess,onFailed,userContext) {ContactService._staticInstance.SendQuoteContactForm(name,company,email,phone,questions,onSuccess,onFailed,userContext); }
