var fDesc=new Array();
fDesc[0] = "miniBit is a 8-bit/chiptune style synthesizer that emulates the sound of 80s game consoles and retrocomputers. It features a main oscillator with 15 waveforms paired with a sub oscillator (a square wave pitched one octave below). The waveforms are not bandlimited and will produce aliasing. Furthermore, using the built-in bitcrusher, you can create even more noisy and retro sounds. The new version also features a synced 8 Steps Stepper/Sequencer with multiple destinations.
From noisy, snare-like steps to ambient subs, miniBit has many uses beyond what one expects from a chip tune synth.";
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 = '';
}
}