var fDesc=new Array(); fDesc[0] = "Metalogic Finance Explorer is a free program that allows you to manage your personal finances. You can add and manage several types of accounts including bank, cash, and credit using this program. Transactions can be imported from your bank in Microsoft Money (OFX), Intuit Quicken (both QFX and QIF), and OFC formats. You can also keep track of your stocks using this tool."; 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 = ''; } }