var fDesc=new Array();
fDesc[0] = "Patients need up-to-date information on proper drug usage. When Patients fully understand what's expected of them, they are more likely to get the desired results from their drug therapy. FamilyRx: AHFS Patient Drug Information gives you a single source for providing important information and instructions for patients on dosing, precautions, possible side effects and interactions, and more.
FamilyRx: AHFS Patient Drug Information is updated quarterly and includes home infusion and cancer chemotherapy monographs.";
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 = '';
}
}