var fDesc=new Array();
fDesc[0] = "MAGIX Music Maker MX Premium offers many exclusive extras and over 3,500 brand-new sounds & loops, plus 2,000 great sounds in the online archive - professionally produced and mixed.
Combine sound building blocks to make your own song in no time at all, add studio effects or play and record premium instruments.
Features:
- Unlimited possibilities
- Easy to use
- All musical styles
- Powerful extras";
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 = '';
}
}