var fDesc=new Array();
fDesc[0] = "Useless knobs were ruthlessly removed so what remains is a UI where every knob counts.
Image-Line PoiZone includes 2 oscillators that can produce the two most popular and useful shapes for subtractive synthesis: fat, bright SAW and PULSE shapes, with adjustable pulse width. noise generator, ring modulation,sync modulation, 16 voice polyphony, 4 voice UNISON with user-adjustable stereo panning and 'Octaver'. The Octaver expands the harmonic range and flexibility of the unison sound to support the creation of realistic 'vox-like' effects.";
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 = '';
}
}