var fDesc=new Array();
fDesc[0] = "AlgoRhythmia is a programmable drum machine and random MIDI drumbeat generator. It generates patterns up to 4 measures long in any of six time signatures and at virtually any BPM.
It allows the user to mutate or regenerate any or all of the drum sounds in a pattern and can alter and evolve drum patterns over time as they play. It includes the ability to play .wav samples and has a library of royalty-free .wav drum samples and allows the user to edit the individual notes in a drum pattern. Patterns can be saved to disk or exported to a MIDI file.";
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 = '';
}
}