var fDesc=new Array();
fDesc[0] = "A-PDF Screen Tutorial Maker is powerful but easy-to-use program that allows you to create live and clear tutorial from screenshot with ease. The friendly user interface guides you operation details in a clear way. You can make a complete tutorial just by capturing screen, inputting instructed text, and then publishing with wanted format (Flash FlippingBook, PDF, Word, Html).";
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 = '';
}
}