var fDesc=new Array();
fDesc[0] = "FirstStop WebSearch? Free Edition is an incredibly fast and easy to use software that uses multiple search engines to search a myriad of web sites simultaneously for a more comprehensive Internet experience. It provides a wonderful way for you and your family to search the web for school, work, or just for fun.
* Search multiple engines all at once. - Use more than one search engine to get more comprehensive search results.
* Quickly identify the most appropriate search results. - Search results are broken down by search sources, domains and countries, and words and phrases. You can sort results by any field or filter them using various criteria.
* Keep your searches organized. - FirstStop keeps track of your searches, and you can easily reuse your findings at any time.";
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 = '';
}
}