var fDesc=new Array();
fDesc[0] = "The ClearImage 7 continues the Inlite tradition of innovating in Image Processing and Barcode Recognition engines. Since 1992 ClearImage engines have powered tens of thousands of installations around the world.
New Help File - .NET and COM Help combined in a single file for easy reference. Language samples, like PHP, Delphi are inside Help file.
Inlite Examples Launcher - Copies sample projects in user specified directory. Gives user flexibility to experiment with sample projects.";
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 = '';
}
}