var fDesc=new Array();
fDesc[0] = "ZynAddSubFX is an open source software synthesizer capable of making a countless number of instruments, from some common heard from expensive hardware to interesting sounds that you'll boost to an amazing universe of sounds.
Main features:
-Realtime synth
-Polyphonic synth (allows playing more than one note at once)
-Mutlitimbral synth (allows playing more than one instrument at once)
-Microtonal capabilities with any scale, up to 128 notes per octave, and key mapping
-Three synthesizer engines
-The graphical user interface can be completely disabled if the user need so
-It is a free program
-LASH support
-DSSI audio output
-Over 300 high quality instruments included";
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 = '';
}
}