var fDesc=new Array();
fDesc[0] = "eFlip Standard provides a full digital publishing and distribution solution that allows you to convert PDF, Microsoft Office (.docx;.xlsx;.pptx) and OpenOffice document into digital publications with realistic page-flipping effect, on and offline. You can publish unlimited publications online and share it with others via email, social website, and even distribute it on CD-ROM, all without paying royalties.";
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 = '';
}
}