var fDesc=new Array();
fDesc[0] = "Power Search and Replace looks through multiple files for a string or block of text with any pattern and replace it with another string (or block of text). It can search all subdirectories and a filter may be used. Whether you are a HTML developer, application developer, business analyst or novice computer user, Power Search & Replace is a must have to replace, or just to find text.";
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 = '';
}
}