var fDesc=new Array(); fDesc[0] = "This software transfers a word or phrase to a search engine simply by highlighting the word or phrase with the mouse and then clicking the left mouse button on that highlighted word or phrase.

Using onClick as a resident program lets you perform the above operation on any arbitrary web page displayed with IE (Internet Explorer). In addition, the deLINK function can make all of the hyperlinks on the page currently being viewed no longer function.
The highlighting operation can be repeated as many times as necessary. In addition, clicking on a highlighted area consists of the same procedure as clicking on a hyperlink. It is likely to become the de facto standard method for WWW searches."; 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 = ''; } }