Calculators

Use our calculators to help you create a savings plan, manage your finances, or plan for the future.

var tvcMailToSubject; var tvcMailToBody; var tvcQueryString = unescape(document.location.search); var tvcMailToLinkElement = document.getElementById('tvcMailToLinkId'); if (tvcMailToLinkElement) { if (tvcQueryString.indexOf("CALCULATORID") == -1) /* If we are displaying the list of calculators, just put the current location in the body. */ { tvcMailToSubject = 'financial calculators'; tvcMailToBody = 'Hello,%0A%0ATake a look at these online financial calculators.%0A%0A' + escape(document.location.href + '\n\n'); } else /* If we are displaying a calculator, add the actual calculation to the body. */ { tvcMailToSubject = 'financial calculation'; tvcMailToBody = 'Hello,%0A%0ATake a look at this online financial calculation.%0A%0A' + escape(document.location.href + '\n\n'); } tvcMailToLinkElement.href = 'mailto:?subject=' + tvcMailToSubject + '&body=' + tvcMailToBody; }
TEMPLATE_ID = "www.ibankasb.com_1"; CALCULATORID = ""; PASSTHROUGH = ""; /* If you need to modify our calculator HTML after it has loaded, define a function and assign it to tvcAfterCalculatorsHaveLoadedFnc. */ /* For example: tvcAfterCalculatorsHaveLoadedFnc = yourCallbackFnc() { var ele = document.getElementById('tvcPC01TitleId'); if (ele !== null) {ele.innerHTML = "How much can I afford?"; }} */ var tvcScriptElement = document.createElement('script'); var tvcCalculatorHtml = ""; var tvcHttp; if (document.location.href.substring(0, 5) == "https") { tvcHttp = "https://"; } else { tvcHttp = "http://"; } tvcScriptElement.src = tvcHttp + "www.TimeValueCalculators.com/timevaluecalculators/Calculator2.aspx?version=" + Math.random() + "&" + createQueryString(); tvcScriptElement.onload = tvcOnceLoaded; document.getElementById('tvcMainCalculatorDivId').appendChild(tvcScriptElement);