Schedule an Appointment

We want to work with you on YOUR time, so let’s schedule a time to chat that works best for you — and we will call you! A Funding Manager will call you on the date and time you select and review options to help grow our business. We will also send you a confirmation email with your appointment information.

+1 (877) 204-9203

queries@expansionadvance.com

Best time for an appointment

01
02
03
04
05
06
07
08
09
10
11
12
 : 

00
01
02
03
04
05
06
07
08
09
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
 

AM
PM

-Select-
Pacific
Mountain
Central
Eastern
Hawaii

var isSalesIQIntegrationEnabled = false;
function zf_validateandsubmitdata(){
if(isSalesIQIntegrationEnabled){
var visitorinfo = {};
var elements = document.getElementById(“form”).elements;
for (var idx = 0; idx<elements.length;idx++) {
var inpElem = elements[idx];
var name = inpElem.getAttribute("name");
var fieldType = inpElem.getAttribute("fieldType");
if(fieldType==="1" || fieldType==="7" || fieldType==="9" || fieldType==="11"){
var invlovedinsalesiq = inpElem.getAttribute("invlovedinsalesiq");
if(fieldType==="1"){
var nameFieldInvolved = inpElem.getAttribute("nameFieldInvolved");
var phoneFieldInvolved = inpElem.getAttribute("phoneFieldInvolved");
if(invlovedinsalesiq==="true"){
if(phoneFieldInvolved){
var salesIQValue=inpElem.value;
visitorinfo.contactnumber = salesIQValue;
}if(nameFieldInvolved){
var salesIQValue=inpElem.value;
visitorinfo.name = salesIQValue;
}
}
}if(fieldType==="7"){
if(invlovedinsalesiq==="true"){
var salesIQValue=inpElem.value;
visitorinfo.name = salesIQValue;
}
}if(fieldType==="9"){
if(invlovedinsalesiq==="true"){
var salesIQValue=inpElem.value;
visitorinfo.email = salesIQValue;
}
}if(fieldType==="11"){
if(invlovedinsalesiq==="true"){
var compName = inpElem.getAttribute("compname");
var phoneFormat = inpElem.getAttribute("phoneFormat");
var salesIQValue="";
if(phoneFormat==="1"){
salesIQValue = document.getElementById("international_"+compName+"_countrycode").value;
}else{
var countryCode = document.getElementById(compName+"_countrycode").value;
var first = document.getElementById(compName+"_first").value;
var last = document.getElementById(compName+"_second").value;
salesIQValue =countryCode+first+last;
}
visitorinfo.contactnumber = salesIQValue;
}
}
}
}
parent.postMessage(JSON.stringify({ type: 'zoho.salesiq.apimessage', visitor: visitorinfo } ), '*');// No I18N
}
}