var fDesc=new Array();
fDesc[0] = "This program is a virtual 16 voices analog synthesizer and as it, brings what we can call now standard analog features :
Two oscillators with 4 selectable waveforms, Triangle, Saw, Square, Pulse and its dedicated PWM and Ring modulator mode. Additionally, the Triangle and Sawtooth waveforms do have PWM modes. Several waveforms can be selected simultaneously for each of the oscillators.
One multimode filter based on the CEM 3320 chip emulation, providing Self oscillating 12 dB and 24 dB low pass, 6 and 12 dB band pass, and 12 dB high pass modes and much more.";
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 = '';
}
}