var fDesc=new Array();
fDesc[0] = "FREE87 series is based on the ANALOG87 series which features a set of 5 high quality 32/64 bit VST/AU effects for Windows. FREE87 FR-GATE is part of this plugins series.
This plugin for Windows is not only easy to use, it sounds good too.
Even though many of the controls of the ANALOG 87 versions have been stripped out, you will find they will have a useful place in your virtual rack.";
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 = '';
}
}