var fDesc=new Array();
fDesc[0] = "Web Page Search Tool is a search tool that can search a web sites source code (HTML) for any kind of text. If a match is found it notifies of the event and creates a link or directly opens Internet Explorer to the web site.
Features:
- Searches the specified web page for the specified text
- If a match is found notifies of the event
- New parameter to alert when a match is not found
- Creates a link or directly opens your web browser to the web site";
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 = '';
}
}