var fDesc=new Array(); fDesc[0] = "With SimpleD Budget, you can keep track of your expenses for each month by allocating your income into "categories", such as Mortgage, Entertainment, etc. As you spend money throughout the month, you enter the amounts spent into each category. SimpleD Budget will then let you see how much money you have left in each category and also graph your spending patterns. It supports multiple languages (Unicode) and multiple currencies."; 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 = ''; } }