var fDesc=new Array(); fDesc[0] = "Regexile is a regular expressions application that allows developers to test regular expressions.
It allows the user to enter and edit a regular expression, and see the matches it finds in source text in real time. Features include group matching and display, a quick clip context menu for easy access to common regular expressions, and other enhancements."; 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 = ''; } }