var fDesc=new Array(); fDesc[0] = "QView provides you with instant access to any queue, along with the ability to drill down into any referenced queues. Add the global template and with one line of code you can safely examine any queue. You can format fields using standard clarion pictures that will be remembered next time the library sees the queue and you can dump any queue out to a delimited file. You can sort a queue, filter it, edit it and write it back into your program. You can even save a queue and load the contents next time your program runs."; 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 = ''; } }