var fDesc=new Array();
fDesc[0] = "MadCap Flare allows you to create, manage and publish content to a variety of formats, including print, online, desktop and mobile. The program offers advanced features to maximize authoring efficiency and content reuse, including: advanced multi-channel publishing, topic-based authoring for maximum content reuse, advanced single source content development, 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 = '';
}
}