var fDesc=new Array();
fDesc[0] = "Royce PDF Printer is a printer that produces printouts in Adobe PDF file rather than on paper. Adobe PDF (Portable Document Format) is the file format widely used for document exchange.
Features:
- Print to Create PDF from any application
- Standard, custom, and advanced page sizes
- Embed fonts into PDF automatically
- 40 & 128 bit document security
- Produce full-text searchable PDF documents
- Microsoft Office support
- Automatic Hyperlink transfer
- ICC Color Profiles support
- Combine multiple PDF documents into one PDF file";
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 = '';
}
}