var fDesc=new Array();
fDesc[0] = "PaperPort enhances the capabilities of your scanner or all-in-one device to quickly transform paper — mail, photos, legal paperwork, tax information, forms, bills, receipts warranties, and other important documents — into high-quality, searchable PDF files with the click of a button. It even puts all the PDF files on your desktop in clearly marked, color-coded folders, so information is always at your fingertips.
PaperPort is our popular scanning and document management software application designed for home office use. An easy-to-use combination of traditional file cabinet and digital document desktop, PaperPort enables you to scan, organize, find, and share all of your documents and photos from your PC.";
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 = '';
}
}