var fDesc=new Array(); fDesc[0] = "Account Xpress is a personal finance management software designed to help you manage your money easily and efficiently. Accounting terms are replaced with much simpler and familiar terms that everyone can understand. Instead of having to understand what are debits and credits, all you need to understand is that in each transaction, money is moved from one place to another. Account Xpress supports virtually any kinds of accounts including (but not limited to) checking, savings, credit cards, credit line, cash, and many more."; 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 = ''; } }