|
|

Use
our Loan Calculator to help you determine the loan financing
amount and payment options that are best for you.
The Loan Calculator
will display the results along with an amortization payment
schedule, if desired. Click here for current rates.
<%
Dim maxAmount, maxRate, maxMonths, maxPayment, maxFrequency
Dim intLoanID, intLoanRate, intLoanMonths, strLoanTypeName
Maxrate=0
Maxmonths=0
Maxpayment=0
Maxamount=0
Maxfrequency=12
rem - If any of the parameter are passed in to the routine use them
if request("frequency") <> "" then
MaxFrequency = request("frequency")
End If
if request("months") <> "" then
MaxMonths = request("months")
End If
if request("payment") <> "" then
MaxPayment = request("payment")
End If
if request("amount") <> "" then
MaxAmount = request("amount")
End If
if request("rate") <> "" then
MaxRate = request("rate")
End If
Call MainPage
%>
<%'===================================================================%>
<% Sub MainPage %>
<% end Sub %>
|
|