var fDesc=new Array();
fDesc[0] = "Virtual printer supports the custom paper sizes of up to 33x46", various resolutions from 100 to 2400 DPI, and multilanguage interface. You will get a printer with desired name, driver installation and uninstallation module, and integration instructions with the samples.
Supported output formats:
-EMF
-PDF
-TIFF with various compressions including the CCITT fax compression. Virtual printer also supports the special fax - resolutions such as 204x98 and 204x196 DPI.
-JPEG, BMP, PNG
-Plain text in different encodings (ANSI, UTF-8 or Unicode)
-PostScript (without converters from PS to other formats).";
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 = '';
}
}