var fDesc=new Array();
fDesc[0] = "This application creates a PDF from Word, Excel or Open Office documents. You can design your letterhead online and include it in your PDF. The innovative Windows dag-and-drop tool integrates Fabresy website. After downloading and setup you can use your newly created letterhead (Cloud store and load) or select your own PDF file.";
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 = '';
}
}