var fDesc=new Array();
fDesc[0] = "Improve the health and performance of your computer today. The Bell Internet Scan and Clean utility is a quick and easy-to-use tool that helps you free your computer from harmful software such as spyware, viruses, Trojans, and worms. Seamlessly detects and removes viruses and spyware from your computer .
Features:
- seamlessly detects and removes viruses and spyware from your computer
- helps increase the speed and effectiveness of your computer
- helps to keep your computer from crashing by removing the malicious software your computer";
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 = '';
}
}