var fDesc=new Array();
fDesc[0] = "CrystalOCR - is an OCR toolkit that allows developers to embed high-quality optical character recognition functionality in their products.
While the recognition quality delivered by CrystalOCR is on a par with the premium OCR packages on the market, we also offer a royalty-free licensing policy. This gives our customers the lowest total cost of ownership of a quality OCR system, enabling them to create software products that are more competitive.";
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 = '';
}
}