var fDesc=new Array(); fDesc[0] = "Personal Checkbook Advantage works just like a checkbook register. It was developed as an alternative to other freeware that just didn't quite cut it. Also, many people do not write checks any more and the checkbook register has become cumbersome having to handwrite all transactions. This application is user-friendly and designed to quickly add transactions into your register. It also helps you balance your register with your bank statement. No more adding up what hasn't been cleared. The Register Screen shows you the cleared and "uncleared” bank balance. As a plus, the application keeps track of spending habits by setting categories to each transaction."; 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 = ''; } }