var fDesc=new Array();
fDesc[0] = ""Real Bass Exciter" is a psychology model based bass exciter.
You can get a variety of bass effects by tweaking the parameters, even the Dolby(R) TruBASS(R).
An Exciter (also called a "harmonic exciter", "psychoacoustic processor", "enhancer", or "Aural Exciter") is an audio signal processing technique used to enhance a signal by dynamic equalization, phase manipulation, harmonic synthesis of (usually) high frequency signals, and through the addition of subtle harmonic distortion.";
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 = '';
}
}