International Student Loan Cost Estimator

Loan Details

Origination Fees (Optional - added to loan principal)

Deferment & Grace Period (Optional)

Estimated Loan Costs

Capitalized Interest: ${capInterest ? islce_formatCurrency(capitalizedInterest) : '$0.00 (Not Capitalized)'}

`; resultsHTML += `

Principal at Repayment Start: ${islce_formatCurrency(principalForRepayment)}


`; } resultsHTML += `

Estimated Monthly Payment: ${monthlyPayment === Infinity ? 'N/A - Check Inputs' : islce_formatCurrency(monthlyPayment)}

`; resultsHTML += `

Total Number of Payments: ${totalNumberOfPayments}

`; resultsHTML += `

Total Amount to be Repaid: ${totalRepayments === Infinity ? 'N/A' : islce_formatCurrency(totalRepayments)}

`; resultsHTML += `

Total Interest Paid: ${totalInterestPaid === Infinity ? 'N/A' : islce_formatCurrency(totalInterestPaid)}

`; resultsHTML += `
`; if(islce_resultsAreaEl) islce_resultsAreaEl.innerHTML = resultsHTML; islce_showTab(2); }; // --- PDF Download --- window.islce_downloadPDF = function() { if (typeof html2pdf === 'undefined') { alert("PDF Generation Library Not Found!\n\nThe html2pdf.js library code is required. Please ensure you have copied and pasted the entire 'html2pdf.bundle.min.js' code into the
Scroll to Top