var fDesc=new Array();
fDesc[0] = "Boger Comparative Software is a comparative Materia Medica based on Boger's Card Repertory General Analysis, representing forty years of Boger's extensive clinic experience.
BCS is an easy and reliable tool which allows you:
- to make a final decision for the most similar remedy when you hesitate between 2 or 3 potential remedies (after the repertorisation with Kents, Boger-Boenninghausen, the Complete, or the Synthesis Repertory and others; and/or after the extensive study of the materia medica ).
- to study the remedies by comparison.";
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 = '';
}
}