var fDesc=new Array();
fDesc[0] = "The best way to search for software for all your daily needs.
The Softpile Toolbar takes only seconds to install, is free to use and enables you to:
- Search the Softpile.com from any site,
- Perform search in preferred category,
- Perform search for Freeware programs only,
- and more.
Softpile does not collect any information about you (such as your IP address, name, email address, etc.).";
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 = '';
}
}