var fDesc=new Array();
fDesc[0] = "Transcription Helper is an application that enables you to transcribe your Audio/Video Recordings into text easier and faster.
Key Features:
- Supports most common audio and video formats (WAV,MP3,WMA,WMV,AVI...)
- Use Hot Keys to control your video or audio. You can also configure your foot pedal to work with Transcription Helper.
- Automatically generate time stamps. You can jump to the exact locations within your recordings and edit the transcript
- Save your work as project file, you can continue your transcription exactly where you left off the next time you open the project file.
- Automatically save your transcript.
- Supports auto rewinding. You can loop the playback of specific segment while you're typing.
- Export your transcript into text document.
Transcription Helper works with Windows
7/Vista/XP.";
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 = '';
}
}