var fDesc=new Array();
fDesc[0] = "Makes polyphonic sounds using hi-quality filters, resonators, phasers, etc.
Add to this an acoustic filter bank, a Resonator bank, a Delay, Phaser, Reverb and plenty of modulation possibilities, you can understand why the PolyM gives you so much pleasure when playing it. Features a hybrid design from an organ like synthesizer and three filter banks, including a 24db ladder filter, driven by a monophonic envelope.";
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 = '';
}
}