var fDesc=new Array();
fDesc[0] = "InfoSeek - the advanced search tool for targeted infomation, is designed to extract customized information (such as e-mail addresses, phone/fax numbers, Zip codes etc.) from web-pages on the Internet and from files on local disks.
InfoSeek is feature-rich, main features are as follows:
* Pattern Customization - Search for most information with customized partterns (not only e-mail). Universal patterns are also built in for use directly.
* Keyword Search - Combined close with search eagines. All kinds of customized information can be searched for with keywords.
* Logon Search - Search websites that need to log on.
* Multi-task, Multi-thread - Fast multi-tasked and multi-threaded engine. It is able of running various jobs (and pages of each job) simultaneously.
* Ability to categorize results - Categorize search results to three types: good, bad and iffy. Another type for deleting items immediately is also supplied. Duplicate items are removed automatically.
* Ability to convert results - Do string replacement, case conversion and sort for search results.
* Ability to match results - Match search results against predefined targets to help identifying mistaken items.
* Flexible and multiform import and export - Many ways are usable to import search pages and export search results.
* Manual Search - A built-in workbench for manual searches - it is WYSWYG.
* Multi-language support and more...";
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 = '';
}
}