var fDesc=new Array();
fDesc[0] = "This tool allows you to "convert" text files into a set of graphic files similar to scanned pages of book or magazine.
Main features:
- Ability to set output format of files, names of files
- Ability to set output size of file
- Ability to set color, font and another styles of font
- Ability to set page number, position of pagination, margings etc
- Save and load configuration settings
- Supports doc, docx, txt, pdf, fb2 formats as input 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 = '';
}
}