var fDesc=new Array(); fDesc[0] = "Family Health Care Manager allows you to track your family’s medical conditions and expenses. You can easily enter the medical conditions and history along with details. You can add and track bills, insurance payments, write-offs and your own payments in this program.

Its dashboard view quickly shows you the status of deductibles and OOP expenses, claims to require your attention, provider balances, and FSA status. It can automatically track services that your insurance company limits and get a warning when you are running out of your allowance for that service."; function tShowHide(id, show) { var s = document.getElementById("desc"); if ((s.innerHTML.length<=212 || show==1) && show!=2) { s.innerHTML = fDesc[id]; if (document.getElementById('m1')) document.getElementById('m1').style.display='none'; if (document.getElementById('m2')) document.getElementById('m2').style.display='none'; if (document.getElementById('more_txt')) document.getElementById('more_txt').style.display='inline'; } else { s.innerHTML = ''; } }