var fDesc=new Array();
fDesc[0] = "The JXSynth is a VST 2.0 compatible software synthesizer which can be used with any VST 2.0 compatible host. The JXSynth has a unique sound and a fresh interface which sets it apart from other VST synths.
With the addition of full midi control the JXSynth is now even easier to use and control. With full Anit-Aliasing Oscillators it produces a professional clean sound and yet it is one of the lowest priced VST instruments on the market.
Main features:
-2 variable waveform (Sine,Triangle, Saw, Pulse) variable quality Anti-Aliasing Oscillators.
-2 Pole resonant Low Pass, High Pass, Band Pass and Band Stop digital IIR filter.
-LFO with note/beat/tempo synchronization - Perfect for accurate Filter Sweeps.
-Two Oscillator combine methods - For subtle changes in sound.
-Unison for Phat Sounds with additional Spread Control.
-Fully customizable MIDI Control.
-32 Polyphonic channels.
-32 program banks per synth.
-Quality, fast 3D Graphical Interface for precise control.";
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 = '';
}
}