var fDesc=new Array(); fDesc[0] = "This program can be used to design and print custom and random bingo cards. It comes with about 200 bingo sample lists that you use to make bingo cards; you can also create, save, and print their own bingo cards. You can also print multi bingo cards in one paper to save money."; 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 = ''; } }