var fDesc=new Array();
fDesc[0] = "Acquire images from scanner, camera or another TWAIN or WIA compatible devices using Bytescout Scan SDK for .NET
Retrieve images from scanner, web-cam or other TWAIN and WIA compatible devices in your .NET application with a fews lines of code.
Description:
-Free for both personal and commercial use; Royalty-free redistribution along with your product/application;
-Made with 100% C# code for .NET (optional full source code licensing is available);
-ready-to-use class and ready-to-use scan options dialog;
-asynchronous image retrieving mode support;
-can scan to image objects or files (with filename template support);
-output image formats: BMP, JPG (with image quality control), PNG, TIFF (with compression method control);
-TWAIN and WIA devices support;";
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 = '';
}
}