var fDesc=new Array();
fDesc[0] = "Included with a number of apps and hardware products, Live 10 Lite is a lightweight version of Ableton Live 10. It comes with all of Live’s essential workflows, instruments and effects – everything you need to record songs, create hands-on with your controller, take music made in your apps further and so much more.";
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 = '';
}
}