var fDesc=new Array(); fDesc[0] = "Simple Money Manager is easy to use application to manage the finances. Where the user can see all important information about your money. Some features offered are: actual and expected income, expenses, and running total, clear expenses pie charts by categories, color alarming totals - the financial temperature, category history charts to see and control you expenses over several months, various reports and charts to get the full picture for your money and file your taxes."; 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 = ''; } }