var fDesc=new Array();
fDesc[0] = "With PeoplePC Online Accelerator, certain Web page text and graphics will load faster when compared to standard dial-up Internet service. Actual results may vary. PeoplePC Accelerator is only compatible with PeoplePC's dial-up service and specified Windows browsers. PeoplePC Accelerator will not enhance speed for Web Mail users who have changed the Web Mail preference to a secure connection. You must specify a dial-up location when getting connected in order to use PeoplePC Accelerator. If installed, it will automatically begin running if you are a PeoplePC dial-up customer with Accelerated or Security Plus access or a PeoplePC High Speed Internet customer using your dial-up. PeoplePC Accelerator is free for PeoplePC Internet access subscribers.
Main Features :
- Turbo-charges your web browser so you surf faster
- Downloads email faster
- Choose from 5 levels of dial-up acceleration
- Works automatically
- Easy to setup & 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 = '';
}
}