var fDesc=new Array();
fDesc[0] = "The eTouch for Health software is a comprehensive tool for learning, practicing and teaching the popular Touch for Health energy kinesiology protocols.
The searchable Reference contains the complete content of Touch for Health - the Complete Edition, by Dr. John Thie and Matthew Thie, plus many additional features available only on the computer:
- Easy-to-use interactive interface
- Digital movies of muscle tests
- Extensive collection of charts and illustrations
- Searchable reference
- Personal Records
- Testing/balancing session creation
- Results recording
- Session archival
- Reports
- Hot links between relevant information.";
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 = '';
}
}