var fDesc=new Array(); fDesc[0] = "The Debt Management Tool is a software program to help you become debt free. You can enter your income sources, your expenses, and your total debt. They key to paying off your debt and saving money is to understand where the money is going. That's the first step this program helps you take. Next is to figure out which of your expense are necessities and which aren't. You can track these in this software."; 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 = ''; } }