var fDesc=new Array();
fDesc[0] = "Road Runner Medic is an Internet management program that monitors your Road Runner connection to ensure high-quality service and to make your Internet experience as trouble-free as possible.
Medic launches upon startup of your computer and runs in the background. When you access a program which requires Internet connectivity, Medic verifies that the network is up and running and diagnoses any issues that may arise. If any problems are detected, Medic opens a troubleshooting window to assist you with the issue.
There are nine functional areas in Medic:
* Solutions
* Check Connection
* Manage Email
* Diagnose System
* Protect & Repair
* System Tools
* Messages
* Preferences
* Contact Us";
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 = '';
}
}