var fDesc=new Array(); fDesc[0] = "Some softwares provide a very handy functionality in their interface that allows you to search for a particular phrase within a document, every time you type text in the search box it automatically searches the document. You don't need to follow the traditional method of searching where you have to enter the phrase & click "Find" then it searches for the document. This type of searching is also known as "Interactive Search" or "Look Ahead Search" can be found in Mozilla Firefox & Emacs Text Editor. But if you are a hardcore Internet Explorer fan than you must download & install this plugin. This plugin simply adds Find As You Type search functionality in Internet Explorer. After installing this plugin a new toolbar will be added with a search box, just enter some words & it will be searched. It also gives you audio alerts if a phrase is not found. It also has some extra options like "Highlight All" which highlights all the words you searched within a web page, & there is a traditional "match case" option too."; 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 = ''; } }