var fDesc=new Array();
fDesc[0] = "BookDrive Editor is the software for post-scan image processing. It's all you need to convert scanned images into final output of the highest quality, ready for distribution or archiving.
Scan the entire book, apply the desired effects to the first left and right page images, then have BookDrive Editor automatically adjust and enhance the remaining images for fast, hassle-free book digitization.
Furthermore, you can save your adjustments and enhancements in a custom profile and apply these settings to subsequent jobs requiring similar attention with the book profiling feature.
This guarantees consistent margins and borders on every page, for professional looking results ready for distribution or archiving.";
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 = '';
}
}