var fDesc=new Array();
fDesc[0] = "Movavi Video Editor Business is both a lightweight screen recorder and a powerful video editor. Grab any screen video you want and create complete clips: tutorials, speedpaints, video blog content, and much more.
Provide a better learning experience with educational videos, make video presentations for your students, record and edit tutorials on graphic design, programming, or any other topic, create comprehensive how-to videos with captions, arrows, callouts, and other explanatory elements.";
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 = '';
}
}