var fDesc=new Array();
fDesc[0] = "SearchLite simplifies searching by allowing you to perform Google and Yahoo searches inline.
When browsing through a website, Searchlite allows the user to perform searches without leaving the page by opening the search results in a popup. This is called inline searching. Inline Searching makes navigating to a result page really fast by avoiding the extra step needed to switch tabs.
Main Features:
- Search Google and Yahoo!, inline: SearchLite displays the first 8 results from Google and the first 10 results from
Yahoo! search as links in a popup.
- Search descriptions on-hover: By hovering over the individual links the descriptions for individual results are shown.";
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 = '';
}
}