var fDesc=new Array();
fDesc[0] = "KOMPLETE ELEMENTS contains over 3 GB of material with over 1000 sounds – all carefully compiled to provide a strong toolkit for the widest-possible range of production tasks. There are acoustic drums, electronic beats, orchestral strings, and a wide range of synthesizers. Plus guitar amp simulation and an array of creative studio effects – a fully equipped and ready-to-roll production suite.";
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 = '';
}
}