var fDesc=new Array(); fDesc[0] = "My Checkbook personal finance software will improve your money management. Start by entering your daily transactions to keep a good record of your actual balance. You know the importance of balancing your checkbook, make it happen with our easy checkbook software.
Entry forms are quick to fill out since most of the information is already pre-entered or available from a list based on your previous entries. We have tried to take the chore out of manually entering your transactions by providing the tools to make it easier."; 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 = ''; } }