var fDesc=new Array();
fDesc[0] = "Multi String Search, is a portable tool that searches for multiple strings occurrences at once in real time!
- Supports Regular Expressions and RegEx 'Subpatterns'!
- Save\Load
- Text Wrap option
it is worth pointing out that we are dealing with a portable application, which means no new items will appear in your Windows registry, and no installation is required in order to start enjoying the programs features.";
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 = '';
}
}