var fDesc=new Array();
fDesc[0] = "BlueGriffon EPUB Edition is a powerful program that allows you to create or edit eBooks. The program has full metadata support for both EPUB2 and EPUB3, support for EPUB3 properties on meta/link/item/itemref, built-in SVG editor, DOM view and ActiveView, word counter and HTML Table Layout editor.";
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 = '';
}
}