var fDesc=new Array();
fDesc[0] = "Designed primarily for third- and fourth-year medical students in clerkships, Medicine Recall covers the core specialty areas within internal medicine: cardiology, pulmonology, nephrology, gastroenterology, hematology, oncology, infectious disease, endocrinology, allergy and immunology, rheumatology, neurology, and dermatology. This latest update is based on the 3rd edition with additional features and enhanced functionality.
Formatted in the rapid-fire Recall Series question-and-answer format of the Recall series to test your knowledge. This is a must-have tool for any medical student in the covered specialties and will be a true resource for classes and exams.";
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 = '';
}
}