var fDesc=new Array();
fDesc[0] = "Anarchy Rhythms is a hybrid between an effect and a drum machine. It takes an audio input and applies a user-controlled matrix of amplitude modulation, bandpass filtering, feedback loops, internal oscillation and compression. It allows you to compose rhythmic patterns from the sonic timbre of the input.
Features:
- Pattern editor for composition of rhythmic patterns.
- Mixer to control parameters for each sound.
- Edit pane to specify envelopes for the parameters.
- Collection of preset patterns and sounds.
- Parameter automation using MIDI controllers or VST automation.
- VST Time Information to synchronize with host sequencers.
- Supports non-4/4 time signatures.
- IN, OUT and Wet/Dry sliders keep their state on preset/pattern changes.
- Complies with VST 2.4 standard.";
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 = '';
}
}