var fDesc=new Array();
fDesc[0] = "SPLViewer is a simple and powerful tool for managing printing jobs (delete, sort, filter, view, ...)
Main actions:
- Print jobs again also on other printers,
- Save including fonts
- Display EMF jobs graphically
- Bulk operations
the SPLViewer is freeware.
Here are some more features:
- Copy displayed page as EMF and use in other programs like Word to document printer output e.g. for manuals.
- The tool is statically linked and does not need any additional libraries. If no help files are needed, the exe file is sufficient.
- Fast memory mapped file techniques were used which gives the Viewer a phenomenal speed.";
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 = '';
}
}