var fDesc=new Array();
fDesc[0] = "While our competitors are busy creating new bells and whistles that most computer users will never need or use, we continue to focus on developing a trusted anti-spyware product that is designed for real people!
Ad-Aware Free continues the Lavasoft tradition and spirit by providing a no-strings-attached, full powered free anti-spyware product that is safe, thorough, and easy to use.";
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 = '';
}
}