var fDesc=new Array(); fDesc[0] = "The printer program indicates whether a printing job has been started or received. The status for a printing job is shown in the printing program that may be opened by clicking open the notification icon (near the clock in Windows). The printing program wants to show a pop up message always when a printing request has been received, when printing is commenced or finished. These messages may be turned off in the menu by clicking Show."; 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 = ''; } }