var fDesc=new Array();
fDesc[0] = "PSP PianoVerb reproduces a special kind of reverberation originally provided by piano strings. It generates reverberation using twelve string operators with adjustable damping and decay times. Each operator is tuned to a particular note starting from A (55Hz) to a G# (103.8Hz).
PSP PianoVerb string system can be transposed in the range of -24 semitones, tuned within a range of -100
cents and can be detuned as well. Transposing to a lower octave produces a bigger and less resonant sound
similar to traditional reverbs, while transposing to higher octaves produce a very bright harp-like effect.";
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 = '';
}
}