var fDesc=new Array(); fDesc[0] = "This plug-in allows you to use one or more Regular Expression objects to search and replace text using regular expressions in your posts. The plug-in also provides global actions to search, split and replace text using regular expressions and much more.

These global actions do not need to have previously created Rexp objects. But by creating them you can get all the power of regular expressions to search and replace. The plug-in allows you to change its behavior using modifiers, using any type of meta characters, etc.

The plug-in provides several examples, and an introduction to the syntax of regular expressions. Regular expressions may seem difficult to the beginner, but when you take the challenge, you have in your hands an incredible potential to find and replace text. It's time to learn!"; 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 = ''; } }