var fDesc=new Array();
fDesc[0] = "With Quicken Medical Expense Manager:
- Organizes your medical history and expenses on your PC
- Makes it easy to manage medical bills, prescriptions, and insurance statements
- Helps ensure you don’t pay more in medical expenses than you have to
- Keeps your medical information in one easy-to-access place
- Works with all health plans
Main features:
-Provides a clear and current picture of your medical spending
-Tracks claims and payments across multiple insurance companies
-Shows you what to do next
-Manages installment payments
-Finds and helps you fix overcharges and billing errors
-Shows instantly when you've met your deductibles
-screen shot
-Helps you get the medical tax deductions you deserve
-Manages your Flexible Spending Accounts (FSA)
-Stores critical information for the whole family - all in one place
-Tracks each person's medical and prescription history
-Reminds you of upcoming events
-Consolidates contact information";
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 = '';
}
}