home *** CD-ROM | disk | FTP | other *** search
- <%
- ScriptLanguagePreference = Request.Cookies("ScriptLanguagePreference")
-
-
- LessonFile = Request.ServerVariables("SCRIPT_NAME")
-
- If ScriptLanguagePreference = "" Then
- ScriptLanguagePreference = Request.QueryString("ScriptLanguagePreference")
- If ScriptLanguagePreference = "" Then
- Response.Redirect "iiselect.asp?LessonFile=" & Server.URLEncode(LessonFile)
- End If
- End If
-
- Response.Expires = 0
-
- If ScriptLanguagePreference = "VBScript" Then
- finlesson = "finance.asp"
- Else
- finlesson = "financej.asp"
- End If
-
- %>
-
- <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
- <HTML><HEAD><TITLE>Future Value Calculation</TITLE>
-
- <SCRIPT LANGUAGE="JavaScript">
- TempString = navigator.appVersion
- if (navigator.appName == "Microsoft Internet Explorer"){
- // Check to see if browser is Microsoft
- if (TempString.indexOf ("4.") >= 0){
- // Check to see if it is IE 4
- document.writeln('<link rel="stylesheet" type="text/css" href="/iishelp/common/coua.css">');
- }
- else {
- document.writeln('<link rel="stylesheet" type="text/css" href="/iishelp/common/cocss.css">');
- }
- }
- else if (navigator.appName == "Netscape") {
- // Check to see if browser is Netscape
- document.writeln('<link rel="stylesheet" type="text/css" href="/iishelp/common/coua.css">');
- }
- else
- document.writeln('<link rel="stylesheet" type="text/css" href="/iishelp/common/cocss.css">');
- </script>
-
- <META NAME="ROBOTS" CONTENT="NOINDEX"></HEAD>
-
- <body bgcolor="#FFFFFF" text="#000000"><font face="Verdana,Arial,Helvetica">
-
- <H3><A NAME="H3_37661422">Use this form to determine the future value of a savings plan.</A></H3>
-
- <FORM METHOD=POST ACTION="<%= finlesson %>">
-
- <TABLE>
- <TR>
- <TD>How much do you plan to save each month?
- <TD><INPUT TYPE=TEXT NAME=Payment>
- <TR> <TD>Enter the expected interest annual percentage rate.
- <TD><INPUT TYPE=TEXT NAME=APR>
- <TR>
- <TD>For how many months do you expect to save?
- <TD><INPUT TYPE=TEXT NAME=TotPmts>
- <TR>
- <TD>Do you make payments at the beginning or end of month?
- <TD><INPUT TYPE=RADIO NAME=PayType VALUE="Beginning" CHECKED>Beginning
- <INPUT TYPE=RADIO NAME=PayType VALUE="End">End
- <TR>
- <TD>How much is in this savings account now?
- <TD><INPUT TYPE=TEXT NAME=PVal>
- <TR>
- <TD>
- <TD><INPUT TYPE=SUBMIT VALUE=" Calculate Future Value "> <input type="submit" name="" value="">
-
- </TABLE>
-
- </FORM>
-
-
-
- </FONT>
- </BODY>
- </HTML>