var fDesc=new Array(); fDesc[0] = "Easy Money is a personal finance application for Windows. It is a basic, overly simplistic system that allows you to track your earnings and spending over time. For the program to be of any use to you, you have to make sure that you spend quite some time creating the categories that better suit your finances. Once you finish doing that, you can add new entries. All you need to do is add the information about when did you spend or receive money, how much it was and what category you would like to place the transaction in."; 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 = ''; } }