var fDesc=new Array();
fDesc[0] = "Bitwig Studio
Modern music production and performance for Windows, macOS, and Linux.
Linear and non-linear workflows for sound design, recording, live performance, and beyond
A complete package with 90+ instruments, effects, and other creative tools
Modular structure and flexibility in all aspects of the software
Enjoy over 10 GB (and counting) of world-class sound content from Bitwig and selected partners
Bitwig Studio is the single solution for realizing any musical idea across every stage of production.";
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 = '';
}
}