var fDesc=new Array();
fDesc[0] = "Diamond Vision is an all inclusive scanning solution that provides powerful production level image and data capture with no per click charges or limitations on scanning and OCR functions.
It is the perfect answer for scanning service bureaus, scanning departments within large corporations, or companies in any industry needing to catch up on a backlog of converting paper files to electronic images.";
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 = '';
}
}