to your HTML Add class="sortable" to any table you'd like to make sortable Click on the headers to sort Thanks to many, many people for contributions and suggestions. Licenced as X11: http://www.kryogenix.org/code/browser/licence.html This basically means: do what you want with it. */ var stIsIE = /*@cc_on!@*/false; sorttable = { init: function() { // quit if this function has already been called if (arguments.callee.done) return; // flag this function so we don't do the same thing twice arguments.callee.done = true; // kill the timer if (_timer) clearInterval(_timer); if (!document.createElement || !document.getElementsByTagName) return; sorttable.DATE_RE = /^(\d\d?)[\/\.-](\d\d?)[\/\.-]((\d\d)?\d\d)$/; forEach(document.getElementsByTagName('table'), function(table) { if (table.className.search(/\bsortable\b/) != -1) { sorttable.makeSortable(table); } }); }, makeSortable: function(table) { if (table.getElementsByTagName('thead').length == 0) { // table doesn't have a tHead. Since it should have, create one and // put the first table row in it. the = document.createElement('thead'); the.appendChild(table.rows[0]); table.insertBefore(the,table.firstChild); } // Safari doesn't support table.tHead, sigh if (table.tHead == null) table.tHead = table.getElementsByTagName('thead')[0]; if (table.tHead.rows.length != 1) return; // can't cope with two header rows // Sorttable v1 put rows with a class of "sortbottom" at the bottom (as // "total" rows, for example). This is B&R, since what you're supposed // to do is put them in a tfoot. So, if there are sortbottom rows, // for backwards compatibility, move them to tfoot (creating it if needed). sortbottomrows = []; for (var i=0; i
Which is better for investors today, a Traditional IRA or a Roth IRA? And if you're the investor, which option should you choose?
We're going to help you answer these questions today, but first, let's look at why you might choose one type of these Individual Retirement Accounts over the other.
A Traditional IRA allows individuals to direct a portion of their pretax income into an investment account that can grow without being subject to income, dividend or capital gains taxes while the funds are held within the account. Only when individuals withdraw money from their Traditional IRA does it then become subject to personal income taxes, but here, the withdrawals will be taxed at whatever income tax rates are in force when the money is withdrawn, not those for when the money is first invested.
A Roth IRA, on the other hand, works a bit differently. Here, individuals can contribute a portion of their annual income after they've paid income taxes on it into an investment account, whose balance can then grow over time without ever again being subject to income, dividend or capital gains taxes.
Assuming that the same investing options are available to both types of IRA, the advantage of one kind of account over the other comes down to how much you can expect to have to pay in income taxes, either at the future date when you withdraw funds from a Traditional IRA or when you first contribute funds to a Roth IRA. Here, for instance, if you expect that you'll have to pay higher taxes in retirement than you do today, then the Roth IRA might make more sense. But, if you expect that you'll have to pay a lower rate of taxes in the future, then investing in a Traditional IRA may be more to your advantage.
We've constructed the tool below to help you work out which type of IRA might be more suited to your needs. While it's set up to consider annual contributions to either type of IRA, you could also use it to decide whether it might be to your advantage to convert a Traditional IRA into a Roth IRA. Just enter the appropriate date into the fields below and we'll run the numbers for you!
* We assume quarterly compounding applies for the invested amount for both the Traditional and Roth IRAs.
So now, the question comes down to how much you can expect to pay in taxes in the future. Right now, unless the current U.S. government acts otherwise, most income tax rates will be rising after 2010. The following table indicates how individuals in today's tax brackets may be affected:
Federal Income Tax Rates Planned Under Current Law (Current and After 2010) | ||||||
---|---|---|---|---|---|---|
Current Income Tax Rates | 10.0% | 15.0% | 25.0% | 28.0% | 33.0% | 35.0% |
Income Tax Rates Beginning in 2011 | 15.0% | 15.0% | 28.0% | 31.0% | 36.0% | 39.6% |
And that's without even accounting for how much the government will be forced to increase income tax rates given the massive amounts of debt it is planning to accumulate beginning this year.
Labels: investing, personal finance, taxes, tool
Welcome to the blogosphere's toolchest! Here, unlike other blogs dedicated to analyzing current events, we create easy-to-use, simple tools to do the math related to them so you can get in on the action too! If you would like to learn more about these tools, or if you would like to contribute ideas to develop for this blog, please e-mail us at:
ironman at politicalcalculations
Thanks in advance!
Closing values for previous trading day.
This site is primarily powered by:
The tools on this site are built using JavaScript. If you would like to learn more, one of the best free resources on the web is available at W3Schools.com.