var fDesc=new Array();
fDesc[0] = "Spark your creativity, then refine your mix — all in a singular workflow. Digital Performer 9 delivers inspirational features devised to ignite your creative muse, combined with state-of-the-art studio production technologies engineered for the most demanding, world-class recording and production environments.
Meet the 64-bit instrument plug-in powerhouse for your Digital Performer desktop. Inspired by legendary subtractive synthesizers, MX4 combines several core synthesis techniques in a unified, hybrid synthesis engine that delivers fresh and vintage sounds alike. As you explore its many banks and hundreds of presets, you'll soon rely on MX4 as your "go-to" instrument. Fat basses, nasty leads, analog pads, vintage electronica — it's all at your fingertips and conveniently saved with your DP projects for instant recall.";
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 = '';
}
}