var fDesc=new Array();
fDesc[0] = "With Photocopier Pro you can make copies just by pressing the Copy button on your scanner.
Main Features:
- Get a preview of the scanned image before printing starts. Manipulate (invert, mirror) the scanned image from the preview window.
- Have greater control over scan resolution.
- Remove superfluous parts of the scanned image with the Auto and Manual crop functions.
- Select the imaging device to use. Convenient when you have both a scanner and a digital camera installed on your system.
- Specify which printer Photocopier should use, specify separate printers for black and white, grey scale and colour copies.
- Instruct Photocopier to pause before printing starts. Convenient when you have scanner and printer attached to your system via a switch box.
- Save the scanned image in a variety of graphic formats (JPEG, GIF, PNG, TIFF etc) from Photocopier's preview window.";
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 = '';
}
}