var fDesc=new Array(); fDesc[0] = "Speech Analyzer is a computer program for acoustic analysis of speech sounds.

You can use Speech Analyzer to do the following tasks:
Perform fundamental frequency, spectrographic and spectral analysis, and duration measurements.
Add phonemic, orthographic, tone, and gloss transcriptions to phonetic transcriptions in an interlinear format.
Perform ethnomusicological analysis of music recordings.
Use slowed playback, repeat loops and overlays to assist with perception and mimicry of sounds for language learning."; 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 = ''; } }