var fDesc=new Array(); fDesc[0] = "Credit Card Manager 2010 stores all personal credit card account-related information and helps keep track and organize credit card transactions on those credit cards and manage your credit card bills. It maintains transaction information, such as charges, payments and interest charged.

When credit card transactions are logged, they are kept in a current transaction listing for future reconciliation with the monthly credit card account statement. After credit card transactions are reconciled, they are retained for user-defined reporting inquiries such as account history and spending habit analyses. All credit card data is stored in an encrypted
database."; 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 = ''; } }