var fDesc=new Array(); fDesc[0] = "Home Banking System is a tool that helps you track all your financial operations. Apart from your bank accounts, it allows you to track all your expenses. You can view various reports-e.g. how much did you spend on food and other expenses in the last two months.
You can create accounts for your children to show them how banks work and to persuade them for saving their money."; 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 = ''; } }