var fDesc=new Array();
fDesc[0] = "Snagit gives you all the tools to communicate clearly, every time. With Snagit it's easy to create eye-catching images and videos for quick communication.
Use Snagit to:
-Take a photo of your computer screen, including long webpages.
-Create quick demo videos to share with anyone.
-Enhance images with stamps, text, and effects.
-Organize your screen captures with easy auto-storing and tagging features.
-Share your images and videos to presentations, social media sites, and 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 = '';
}
}