var fDesc=new Array();
fDesc[0] = "This is a simple utility program that will send any file directly to any printer Windows knows of. A typical use of this is to send a PostScript file to a laser printer, which knows how to handle it. You can also send to any printer the prn file format generated when printing something after selecting the option Print to a file.
Copy to Printer is intended to be a friendly substitute for lpr which works with any printer (local or networked) accessible from your computer and has some features to help you configure the printer (to print on both sides of the paper, for instance), make several copies, and more.";
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 = '';
}
}