var fDesc=new Array();
fDesc[0] = "SpeechMotion Enterprise is a set of tools for voice capture, speech recognition, automatic distribution, and e-signature applications for healthcare documentation. SpeechMotion Enterprise offers a unified back-end and front-end speech recognition technology. Voice profiles are trained using traditional transcription, eliminating the need for your physicians to train the engine. The web-based e-signature option lets you sign documents within SpeechMotion.
Users can access SpeechMotion Enterprise 5 via the client application installed on Windows PCs.";
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 = '';
}
}