var fDesc=new Array(); fDesc[0] = "My Medications List Helps you keep track of your medicines, total your medication costs by month, quarter and year along with having plenty of room for jotting down important notes about each of your medications such as "No Alcohol", "Take with food", etc... It also has an area for general notes such as your pharmacy anddoctors names and phone numbers. Has functions to eMail, Fax or print out to take with you both prescription refill requests for your pharmacy and prescription renewal requests for your doctor. These days every medical professional you come in contact with, even your dentist, wants to know what medications you are taking so now you can just print out your list to carry with you for such cases."; 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 = ''; } }