var fDesc=new Array();
fDesc[0] = "The SPDE Queue Manager provides a streamlined UI for print operators. The consolidated view allows print operators to monitor and control print queues and jobs. This allows operators to initiate and halt job processing, reorder and move jobs between queues, handle reprints, interventions and more based on the security rights assigned to them.
The Queue Manager's highly customizable UI allows the operators to create "views" that organize the queues and jobs according to the operator's preferences, and filter messages based on user-defined rules. A queue window can be opened for each logical queue and multiple queues can be grouped together for management within one window.
Main Features:
- Automatic Routing
- AutoStart Commands
- Bookmaking
- Drag & Drop
- File Naming
- Job Separation
- Job Tracking
- Load Balancing
- Reprints
- Search & Replace
- Timed Release
- User-Freindly GUI";
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 = '';
}
}