var fDesc=new Array(); fDesc[0] = "Pain Management Tracker (PMT) was written and designed to help the doctor/patient relationship. It is helpful when you have an appointment with your doctor. When you are working on weight loss or financial change, a journal helps you realize what is working and what is not working for you. Chronic pain situations are the same."; 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 = ''; } }