var fDesc=new Array();
fDesc[0] = "Word Search and Replace Tool is a fast and reliable software tool adept at finding and replacing words and phrases in word documents.
Main features:
- Support different formats like DOCX, DOC or RTF.
- Provides backup facility to avoid loss of original files.
- Find and replace in multiple word documents.
- Find and replace special characters.";
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 = '';
}
}