var fDesc=new Array();
fDesc[0] = "Got a Broadband issue you need fixed now? Try the free Windstream Broadband Check-up Center. The Check-up Center can help you identify and repair computer problems that may directly affect your Broadband connection.
Some of the Benefits of the Windstream Broadband Check - Up Center:
- Checks for Disk Space, Memory
- Checks for Firewalls, Antivirus, and System Updates
- Backup and restores favorites
- Repairs issue preventing an Internet Connection";
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 = '';
}
}