var fDesc=new Array();
fDesc[0] = "WinScribe® Importer is a transcription management client that enables you to control how dictation jobs are imported. It runs on your PC and regularly scans one or more source folders for dictation jobs. When WinScribe® Importer finds a dictation job in a source folder, it automatically copies it to a selected destination.
WinScribe® Importer allows multiple authors to upload dictation jobs onto the same PC. Rules are used to control how dictation jobs are copied from source to destination. Some dictation jobs may include both a dictation file and a tag file, which provides additional information about the job.
You can also use WinScribe® Importer to control which dictation jobs are to be processed through speech recognition software.";
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 = '';
}
}