var fDesc=new Array();
fDesc[0] = "Sign up for AOL Computer Checkup. Then sit back,
relax and let our 52-point diagnostic detect and fix
the problems that plague your PC’s performance.
AOL Computer Checkup's one-click cure analyzes what to do to improve your computer's performance and protect your privacy… then runs through a sophisticated repair diagnostic to fix it. Continuously and automatically.";
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 = '';
}
}