var fDesc=new Array(); fDesc[0] = "The new Action is called Hide and lets you hid messages until you want to see them. It works a litle bit like the Payse button, but uses a regulas expresson to trigger just like all other actions. To show all hidden messages; press the tool bar button names Hidden.To show only messages hidden for a particular regular expression; right klick in the text area and select the action you want messages shownd for in the pop up menu."; 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 = ''; } }