var fDesc=new Array();
fDesc[0] = "Toxic Biohazard is the 4th generation in the line of Toxic synthesizers. Toxic Bio distills the best features from the previous 3 versions to deliver our most concentrated Toxic ever.
Toxic Biohazard features a hybrid synthesis engine, combining the best of FM and Subtractive synthesis. With the addition of a warm, analog-modeled filter and set of built-in effects, the Toxic concept remains one of convenience, simplicity, and superb sound quality.
The Toxic Biohazard sound was built from the ground up, via the Image-ine's unique mathematical calculations and analog-modeling techniques.";
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 = '';
}
}