var fDesc=new Array();
fDesc[1] = "native file support for Adobe Flash and Adobe Photoshop Album slide shows, and electronic cards, and eBooks Adobe Reader is free, works with Windows 98/Me/2000/XP/2003/Vis ta.";
fDesc[2] = "that lets you listen to documents, e-mails or web pages instead of reading on screen.";
fDesc[4] = "version features useful and advanced characteristics that enhance the experience of using Acrobat. With Acrobat Reader you can create, view, edit and print your PDF files, more easily and efficiently.";
fDesc[6] = "Background music can be supported too.";
fDesc[7] = "can copy or print, lend/give the book, ReadAloud); some PDF technical info, PDF bookmarks and used fonts.";
fDesc[9] = ", *.doc, *.pdf, *.fb2, *.fb2.zip) such way, that you receive suite graphic files like suite of scanned pages of book or magazine. It is often necessary when you want to read favorite book on MobilePC, which does not have ability to show text files, but only graphical i.e. Zune. This tool has many opportunities for settings output files: type of graphical file, size of file (\"resolution\"), pagination, margins, font, color of text, line spacing etc. Also you have ability to save favorite settings and load saved earlier. 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 fb2 and PDF format as input file";
function tCollapseAll(maxID)
{
document.getElementById("alls_action").innerHTML = "Expand descriptions";
var id=1;
for (id=1; id <= maxID; id++)
{
if (document.getElementById("desc_" + id))
tShowHide(id, 2);
}
}
function tExpandAll(maxID)
{
document.getElementById("alls_action").innerHTML = "Collapse descriptions";
var id=1;
for (id=1; id <= maxID; id++)
{
if (document.getElementById("more_" + id))
tShowHide(id, 1);
}
}
function tShowHide(id, show)
{
var s = document.getElementById("more_" + id);
if ((s.innerHTML!=fDesc[id] || show==1) && show!=2)
{
s.innerHTML = fDesc[id];
}
else
{
s.innerHTML = '...';
}
}