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
Given the multiple levels of failure of President Obama's Affordable Care Act, which is resulting in millions of Americans losing their current health insurance as they're being prevented from even being able to shop for it on the badly broken Healthcare.gov web site, a lot of Americans are likely asking themselves whether they even need health insurance. If you're among them, we've built a tool to help you answer that question.
First, we've refined our estimates of the probability that an individual might have a health condition serious enough to require admission to a hospital for treatment, which we've illustrated in the following chart.
Although our mathematical model is based upon the rates of hospital admissions for the population of Singapore, we would expect that these values are close to what they would be for the U.S. population.
Just enter your data in our tool below, and we'll estimate the odds that you would need to be admitted to a hospital to treat a significant health condition.
The trick is to use this information to assess whether it might make more sense for you to self-insure, which is what you would really be choosing to do by not acquiring health insurance. If that's you, we can recommend Sean Parnell's blog The Self-Pay Patient and also his list of useful resources. You'll have to decide what's an acceptable amount of risk of expenses for you to carry all on your own if you opt out of getting health insurance coverage in favor of this approach.
The good news, if you can call it that, is that you can always change your mind and pick up coverage in the next enrollment period, or if you qualify for Special Enrollment. Or you might consider a short term medical plan, which Hank Stern has identified as a possible way to get real health insurance coverage outside of the official enrollment periods for Obamacare.
Beyond that, there are certain conditions that should prompt you to acquire regular health insurance coverage outside of what the our tool's results might indicate, which would apply to a generic individual plucked at random from the entire population.
Finally, we would hope this would be obvious, but if you or someone for whom you would cover on your health insurance have a high probability of requiring admission to a hospital for the treatment of a serious medical condition, or are over Age 84, which is the official cut off for our tool's accuracy, you will likely benefit from having health insurance coverage.
We'll stop there because we're starting to sound way too much like Jeff Foxworthy....
Labels: health care, insurance, personal finance, risk, 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.