var fDesc=new Array(); fDesc[0] = "Ezhelp applies Windows style, referential help, to your Clarion app. By enabling the question mark icon button on the windows, and the right-click popup, "What's This", it makes it easy for your users to get help on any control on the screen. Plus since nobody likes adding Help to their system, we made Ezhelp editable at runtime. So you can let someone else do the dirty work"; 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 = ''; } }