var fDesc=new Array(); fDesc[0] = "GnuCash is personal and small-business financial-accounting software. Using its simple interface, you can track bank accounts, stocks, income, and expenses. The GnuCash checkbook-style register provides a custom, convenient, and familiar interface for entering financial transactions. The register supports common checking and credit-card transactions, as well as income, stock, and currency transactions."; 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 = ''; } }