var fDesc=new Array();
fDesc[1] = "documents and image files into fully editable text documents. It handles the recognition process automatically, but you can also define areas of text, graphics and tabular formatting.";
fDesc[2] = "to convert paper documents and image files into fully editable text documents. In the 9.0 version, overall accuracy has been increased especially on documents containing tables, legal documents, multilingual documents, and digital camera captured images.";
fDesc[3] = "and save them in an editable form, preserving the layout and formatting of the original as closely as possible. This incredible application is really easy to use and intuitive with wizards that make your work even easier.";
fDesc[4] = "convert paper documents and image files into fully editable text documents. It handles the recognition process automatically, but you can also define areas of text, graphics and tabular formatting.";
fDesc[5] = ", Latin and the other way around. Comprehensive collection of dictionaries, advanced search capabilities";
fDesc[6] = "documents, PDF, and digital camera images. Superior recognition accuracy and layout retention.";
fDesc[7] = "collection of 152 dictionaries. Lingvo x3 provides accurate translations from Russian to 11 languages and back of each word or phrase and example sentences.";
fDesc[8] = "and format retention with robust networking capabilities. It includes all the features of the Professional edition plus networking features such as automated network installation, support for networked multi-function peripherals, among others.";
fDesc[9] = "over 7,400,00 entries in 128 dictionaries for translating words and phrases from English, German, French, Spanish, Italian, Ukrainian, Chinese, Latin, Turkish to Russian and back.";
fDesc[10] = "paper and reproduce documents into editable and searchable Word or Excel files. The program features a very simple user interface with a wizard that leads you through the simple steps of scanning and converting, or you can run the application directly from Microsoft applications.";
fDesc[11] = "variety of new interesting functions has been added. Program inteface has also been improved a lot, but you can also improve your dictionary yourself: new dictionaries can be added by simply coppying a dictionary file to the memory card.";
fDesc[12] = "capabilities to transform the whole screen, the active window, or a selected area, into text, an image, or a table. All of these can be automatically stored in your clipboard for later use, while text and tables can also be exported to Word, Excel, RTF, CSV, or TXT files.";
fDesc[13] = "the readable format of your choice (Word, Excel, PDF, RTF, TXT, PDF, or HTML). It can capture any photograph directly from your digital camera, and open almost any image file in your system. It can recognise text in many different languages, including double-byte characters.";
fDesc[14] = "editable formats without retyping and reformatting.";
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 = '...';
}
}