var fDesc=new Array();
fDesc[0] = "In the process of using a scanner to scan documents that existing in the office (meeting documents, Specifications, Report, minutes records etc.) and store it by converting with Multi-page TIFF format, the following requirements may generate.
- You want to rotate a specific page when there are vertical and horizontal
images mixed in the documents.
- You want to delete the unnecessary pages (blank pages etc.) in the scanned documents.
- You want to sort the pages by scanning the duplex document to simplex
document.
- You want to add/insert pages to an existing document.
- You want to unify the scanned documents in the server.
- You want to send the scanned document by e-mail easily.
- You want to use the scanner as a simple copy machine by printing scanned document.
This application gives you a solution for the above requirements.";
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 = '';
}
}