var fDesc=new Array(); fDesc[0] = "KnowWare's BillVue program is a simple household bill organizer that displays all of your bills, their due dates, outstanding balances, and whether or not they have been paid this month. BillVue is NOT an accounting program or a financial database. It displays your bills for the current month, but does not keep track of your bills from last month or last year. It IS a simple way to keep track of your bills and see at a glance which ones are due."; 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 = ''; } }