document.body.innerHTML = document.body.innerHTML.replace('[INLINE-CTA-PREMO-1]', `
Up to $500K Available
8.5% as of 2/2024 | 2 weeks to fund
If you are a small business owner considering an SBA loan, we suggest doing one of two things:

See if you qualify by taking 3 minutes to fill out the Application here.

This is the fastest way to get answers about an SBA loan. It will provide us with everything needed to get an approval.
Apply
Get Rates
SBA Loan
Start Application

Calculate your estimated monthly payment with the FastWaySBA® Calculator

Get a sense of what kind of monthly payment and rate you would experience with different amounts.
Calculate Payment
Learn More
SBA Loan
Go to Calculator
`); document.body.innerHTML = document.body.innerHTML.replace('[INLINE-CTA]', `
Next
`); document.body.innerHTML = document.body.innerHTML.replace('[INLINE-CTA-CALC-1]', `
How much do you want to borrow?
Thank you! Your submission has been received!
Oops! Something went wrong while submitting the form.
$30,000
$150,000
Monthly Payment
$1,041
Loan term
10 Years
Interest rate
11.25
%
Continue to Application
`); document.body.innerHTML = document.body.innerHTML.replace('[INLINE-CTA-500K]', `
Need an additional $500K?
Continue here and we will come to you with an approval in >24 hours
Get Started
`); document.body.innerHTML = document.body.innerHTML.replace('[INLINE-CTA-LOSSES-ON-TR]', `
Did your business show losses on the last filed tax return?
Click here to see how FastwaySBA can help you secure a 10-year SBA Loan
Get Started
`); document.body.innerHTML = document.body.innerHTML.replace('[INLINE-CTA-MONTHLY-PAYBACK]', `
Now is the time to receive the lowest rates before approval criteria becomes tighter.
Find out your monthly payback for a $500K SBA Loan
Get Started
`); document.body.innerHTML = document.body.innerHTML.replace('[INLINE-CTA-TRUCKING]', `
Do You Have the Funds to Expand Your Fleet?
Click here to claim a $500K SBA loan
`); document.body.innerHTML = document.body.innerHTML.replace('[INLINE-CTA-FASTWAY-RATES]', `
Want the Lowest SBA Loan Rates?
Click here to access an SBA loan up to $500K
Get Started
`); document.body.innerHTML = document.body.innerHTML.replace('[INLINE-CTA-EIDL]', `
Is EIDL Debt Holding Your Business Back?
How much extra capital could you use?
Get Started
`); document.body.innerHTML = document.body.innerHTML.replace('[INLINE-CTA-TR-RETURN]', `
DID YOU FILE your 2023 Business Tax Returns?
Get a quote by end of day or speak directly with an SBA specialist.
Get Started
`); document.body.innerHTML = document.body.innerHTML.replace('[INLINE-CTA-ETRAN]', `
Looking to get your ETRAN score?
Get your ETRAN score within the day.
Get ETRAN Score
`); document.body.innerHTML = document.body.innerHTML.replace('[INLINE-CTA-ETRAN-1]', `
Looking to get your ETRAN score?
Get your ETRAN score within the day.
Get ETRAN Score
`); const slider = document.getElementById("myRange"); const input = document.getElementById("req-input1"); // Format number as currency function formatCurrency(num) { num = Number(num); return "$" + num.toFixed(0).replace(/(\d)(?=(\d{3})+(?!\d))/g, "$1,"); } // Update input on slider change input.value = formatCurrency(slider.value) // Update input on slider change slider.oninput = function() { let num = this.value.replace(/[,$]/g, ''); const CALC_CTA = document.getElementById('calc-next'); CALC_CTA.style.display = 'block'; let int_rate = document.getElementById('int-rate') let apr_rate = document.getElementById('apr-rate') let m_payment = document.getElementById('m-payment') input.value = formatCurrency(num); if (num < 50000) { int_rate.innerText = '12.25'; m_payment.innerText = formatCurrency((num * 1.67)/120); } else { int_rate.innerText = '11.25'; m_payment.innerText = formatCurrency((num * 1.67)/120); } } // Update slider on input change input.oninput = function() { // Remove formatting let num = this.value.replace(/[,$]/g, ""); slider.value = formatCurrency(num); let int_rate = document.getElementById("int-rate") let apr_rate = document.getElementById("apr-rate") let m_payment = document.getElementById('m-payment') if (num < 50000) { int_rate.innerText = "12.25"; m_payment.innerText = formatCurrency((num * 1.67)/120); } else { int_rate.innerText = "11.25"; m_payment.innerText = formatCurrency((num * 1.67)/120); } //document.getElementById('m-payment').value = '' }