var fDesc=new Array();
fDesc[0] = "BiFilter2 - a high-end quality stereo filter module. BiFilter2 drastically extends the ‘filter plug-in’ concept to provide today’s creative musicians with an extremely powerful multi-effect tool.
BiFilter2 offers dual multimode filters with 47 unique and different sounding filter types. 8 additional distortion types, FM, AM, wave shaping and lo-fi effects create new and unheared sounds.
Main Features:
- 47 unique, different sounding filter types
- 8 warm sounding distortion types
- FM, AM, Waveshaping, bit crushing, resampling, comb filtering, vocal filtering, equalizing, reverbaration
- Excellent value for money
- High precision, real time frequency response display
- Paramtere smooting, click-free knob movements
- High-end quality filter algorithms, anti-aliasing, oversampling
- True stereo architecture, works in all known sample rates
- Easy to use interface
- 100 presets
- Midi and automation support
- High performance";
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 = '';
}
}