var fDesc=new Array(); fDesc[0] = "This plugin provides an application that monitors jobs in a way suitable for public wall displays.
Doubleclicking enters/leaves fullscreen mode. Only the jobs visible on the view from which the display is started will be shown. The yellow dots indicate that the job is queued for build, the number of dots marks the position in the queue (a maximum off three are displayed). The text that is displayed is taken from the "Walldisplay Text" job property, if none is given the job name is used instead."; 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 = ''; } }