var fDesc=new Array();
fDesc[0] = "When Auto Correct is enabled, it will scan all selected frequencies in the WAV file to determine the minimum and maximum amplitudes. It will then correct these variations by automatically increasing or decreasing the levels.
The result is a nearly linear frequency response. For the listener, this creates more consistent sounding audio. A typical application that would benefit from this tool is an internet radio station. A common problem that many of these stations experience is an inconsistency in true audio reproduction (i.e., different songs sound different).
By utilizing this function, one may be assured that there will be an average and consistent degree of bass and treble response, independent of a specific song title or artist.
Graphic Equalizer Studio is a program that allows you to watch minimum and maximum amplitudes. Varying the "Q-Factor" will change the overall tone quality. Using a Q-Factor over 7-8 will create a softer, finer, more blended sound.";
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 = '';
}
}