var fDesc=new Array(); fDesc[0] = "Barcode Batch Separator is a program that increases employee productivity at the copy machine when scanning numerous small files. The program allows the user to take full advantage of the copier's speed when scanning. Currently if a user is scanning a batch of files they need to scan one file at a time. With Barcode Batch Separator they can stack the files and scan it as one large file at full speed eliminating the starting and stopping after each file."; 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 = ''; } }