var fDesc=new Array(); fDesc[0] = "Medical Bills Plus is a software application that gives you a comprehensive way to keep a record of your family's medical costs and to ensure that your insurance claims have been paid. The program provides an easy way to record medical visits and costs as they occur, and to calculate and display information that enables you to effectively manage your medical insurance program"; 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 = ''; } }