var fDesc=new Array();
fDesc[0] = "Samplitude Silver is a fast and easy-to-handle
music production software on your PC, from recording to mastering.
Samplitude 11 silver basically is a limited version of Samplitude 11 Producer.All you need to produce and arrange in high-quality is a conventional
sound card, but additional studio equipment can easily be added.";
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 = '';
}
}