var fDesc=new Array();
fDesc[0] = "The PolyKB II Player is much more than a simple player. It's also a fully featured real synth.
It gives you the liberty to fully customize 8 parameters you can select in a big list: Adsr values, Filter Cut Off and resonance, etc
But there's more : These parameters can also receive full automation via midi Cc.
Its rather rare to have to automate more than 8 controls in real time for a preset, in addition of all the real times controls already contained in the preset and made available by our Sound Designers ( Ie the original Mod Wheel, After Touch, Velocity, LFO and envelope modulation assignations )
The PolyKB II PLayer also comes with the same acclaimed 250 hi quality preset library than its big brother.
Its also fully compatible with our Analog Bags 1 & 2 Add On soundbanks, as well as with some 3rd party soundsets, so you can extend the original library at a very affordable price.
All your custom patches are also saved via your host, and projects using custom patches are saved with all your edits.";
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 = '';
}
}