Investment_Calculator
  Investment Calculator
  Investment Decisions:
Enter in your desired investment amounts:
  Investment Portfolio:
Set up your portfolio based on risk and return:
  Investment Type: Investment Percent: Yearly Percent Return: Level of Risk:
Investment Area #1:
Investment Area #2:
Investment Area #3:
Investment Area #4:
Investment Area #5:
 
  Summary:
Total Investment:
Total Return:
Level of Risk:
 
  Summary Graph:
  Detailed Summary:
  Year #: Starting Principal: Ending Value: Total Investment:
                                                                                                                                                                                     

Note: JRE 1.2 and above Plugin Users
******************************
Java security policies in JRE 1.2 and above have changed from JRE 1.1.X. Beginning with JRE1.2, local code is not trusted by applets. This may cause you to receive an AccessControlException or SecurityException when an applet loads a .KDC file on the local file system.

To fix this:
1.) Open your java.policy file which may be located in a location like C:\Program Files\JavaSoft\JRE\1.2\lib\security\java.policy.
2.) Insert a line like the following within the grant{} tags:
    permission java.io.FilePermission "c:\\temp\\KDCalcFiles\\-","read";
    Where c:\\temp\\KDCalcFiles is the path to your .kdc file.
3.) Save the java.policy file and retry the web page.

Note: Applets will still work without any permissions modifications when being served up by a web server.
See Sun's Java Documentation for more information.