var fDesc=new Array();
fDesc[0] = "AHFS DI (American Hospital Formulary Service) is also free from the influence of manufacturers, insurers, regulators, and other special interests, giving you an unbiased source of drug information. In a single volume, you get:
- The latest commentary on a wide array of FDA-approved uses and comprehensive coverage of unlabeled uses.
- Exhaustive analysis of drug interactions, cautions, and toxicity.
- Detailed information on dosage and methods of administration.";
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 = '';
}
}