var fDesc=new Array();
fDesc[0] = "Hydrogen is an advanced drum machine. It's main goal is to bring professional yet simple and intuitive pattern-based drum programming.
Main features:
- Very user-friendly, modular, fast and intuitive graphical interface based on QT 4.
- Sample-based stereo audio engine, with import of sound samples in .wav, .au and .aiff formats.
- Support of samples in compressed FLAC 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 = '';
}
}