var fDesc=new Array();
fDesc[0] = "DISK SEARCH ASSISTANT FEATURES
- How to search file in XP? It's easy with in-expensive third-party file search utility!
- Compare search utilities that provides various functionality, so called local file search engines.
- Search text. Disk Search Assistant provides ability to search text.
- Search text in Office documents. Disk Search Assistant allows to search text in popular office documents, such as Word (doc), Excel (xls), Adobe Acrobat (PDF) and Web Page files.
- Regular expressions. You can set your search query in terms of regular expressions, using and - to specify keywords you want exclude from search.";
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 = '';
}
}