var fDesc=new Array(); fDesc[0] = "Star Check Writer can be used to print personal or voucher style checks. It does not print your actual check, it fills in your pre-printed check form. This program lets you manage an unlimited list of payees, checking accounts, check definitions, and transaction history. You can also get a variety of reports on check issue history, payees, etc. Recurring payments can be defined for re-printing same amounts or monthly bills."; 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 = ''; } }