var fDesc=new Array();
fDesc[0] = "MAGIX Music Maker Soundtrack Edition transforms your computer into a virtual recording studio where you can produce your own movie music.
Subtle accompaniments, sentimental pieces or illustrious orchestral melodies - MAGIX Music Maker Soundtrack Edition provides you with a wide range of options for creating unique music and is perfect for designing soundtracks for home videos, slideshows, and presentations.";
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 = '';
}
}