var fDesc=new Array();
fDesc[0] = "MedicWords is the perfect all around medical spell checker. If you have to type medical terminology and hate looking up the correct spelling in a medical dictionary or medical speller every time your word processor flags a medical term or all those medical terms as misspelled, then MedicWords can help you with the medical spell check. MedicWords works within the Microsoft's Word.
Specialties included: anatomy, anesthesiology, bacteriology, biology, cardiology, hematology, immunology, internal medicine, neurology, nursing, oncology, ophthalmology, pediatrics, psychiatry, radiology, toxicology, and more.
Also included are: FDA Approved drug brand names, generic drug names, medical procedures, diseases, surgical terms, genetic research, as well as acronyms and abbreviations.
MedicWords is perfect for: Medical transcriptionists, Health Information Techs and Managers, Medical Students, Hospitals, Doctor's Offices, Insurance Companies, Law Firms, and anyone else responsible for correctly spelling medical terminology.";
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 = '';
}
}