var fDesc=new Array();
fDesc[0] = "Bitsonic Gnat is a free modern sample based synthesizer for electronic music. It uses highly optimized code and SSE instructions in order to reduce the CPU usage to a minimum. The unison oscillator is capable of producing 6 unison voices in stereo. You can send 3 Osc output into the next Osc, so you can vary the sound.";
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 = '';
}
}