var fDesc=new Array();
fDesc[0] = "Atomic is a 16 step sequencer composing tool with a built in synth that also has the ability to control other softsynths or even hardware via it's MIDI out function.
The design is circular which allows a different approach to composing and sound design.
Inspired by circular step sequencers such as the
Buchla Arbitrary Function Generator and Future Retro Revolution.";
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 = '';
}
}