var fDesc=new Array();
fDesc[0] = "Rack2-Filer Smart is a program that helps to arrange and visualize the files on your computer. It allows you to view, and edit data as if you are handling actual binders in a bookshelf. The program is capable of digitally archiving the equivalent of 10,080,000 digital pages in up to 10,080 e-binders.
Data can be added to the existing documents using ScanSnap feature. The ScanSnap hardware can scan entire books and store them in digital format with the same binding cover.";
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 = '';
}
}