var fDesc=new Array();
fDesc[0] = "Chitrankan saves the user the effort of typing an entire document.
Main features:
- Recognizes Hindi and Marathi languages along with Embedded English Text.
- Skew detection and correction for input image upto ± 15°
- Grabs images directly from the scanner for processing
- Automatic Text and Picture region detection
- Supports all TWAIN compatible scanners and digital cameras
- Supports 256 grayscale/color, .bmp/.tiff images scanned at 300 dpi as input image for recognition
- Ideal for font sizes between 10 pt. and 36 pt, and all popular fonts.
- Saves scanned/modified images as .BMP files";
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 = '';
}
}