var fDesc=new Array();
fDesc[0] = "CaptureOnTouch is a scanning application for image FORMULA DR-C225.
CaptureOnTouch has four output methods for processing a scanned image.
- Save to folder: Save the scanned image to the specified folder.
- Attach to E-mail: Attach the scanned image to e-mail.
- Print: Print the scanned image.
- Send to application: Open the scanned image in the specified application.";
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 = '';
}
}