var fDesc=new Array();
fDesc[0] = "Book Restorer™ software is the ideal tool for restoring images because of the diversity and quality of its processes.
Book Restorer™ includes numerous features entirely dedicated to the digitization of materials such as books, incunabula, newspapers, registers, property books and maps.
Book Restorer™ is the ideal application for managing, restoring, storing and publishing written works.
Book Restorer™ lets you display and view all the images in a book digitized with a scanner.
During the import and export phases, you can select any of the following formats to optimize your files for their intended use: TIFF, JPEG, BMP, PDF or PNG.
The Book Restorer™ architecture allows you to simulate a book structure.
The automation module enables you to run restore and export processing as a background task";
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 = '';
}
}