var fDesc=new Array(); fDesc[0] = "Create a Home Budget for each month and track expenses as well as savings in multiple categories. Allows saving for example., 500 each month towards a "Travel to Europe" category and accumulated savings are shown by allocated category. Allows users to save each month for specific purposes as well as track spending on a budget."; 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 = ''; } }