var fDesc=new Array();
fDesc[0] = "Evidence-Based Medicine Guidelines fills the demand for a handbook discussing the diagnosis and treatment of a wide range of diseases and conditions encountered by health care professionals.
Features:
-Provides physicians with fast and easy access to practice guidelines based on the best available research evidence
-Covers practically all medical conditions encountered in general practice
-Developed by over 300 experienced general practitioners and specialists worldwide
-Includes both diagnostic and therapeutic guidelines, and recommendations on diagnostic tests and drug dosage
-Presented in a user-friendly format with self contained topics based on clinical subjects
-Clear and concise explanations of all available evidence results in the guideline for treatment
-The strength of evidence is graded from A-D making this title a quick and easy reference whenever and wherever you need it!";
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 = '';
}
}