var fDesc=new Array();
fDesc[0] = "It is an app designed for scanning, barcodes and indexing.
Main Features:
- Intuitive and user friendly interface: Kofax Express utilizes the same interface as Microsoft Office 2007 applications, with the most commonly used commands and features readily accessible from a ribbon bar atop the screen.
- High image quality: Innovative SmoothView™ technology enables you to manipulate multiple document images with ease.
- Zonal OCR: Kofax Express automatically extracts index field data from documents.
- Rubber band OCR: Kofax Express users can now easily index documents by selecting the text in the document with their mouse.";
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 = '';
}
}