var fDesc=new Array();
fDesc[0] = "Accel SpeedTec speeds up your access to the Internet! This program modifies the settings on your Windows system, allowing information to flow faster through any connection. Accel SpeedTec works with all types of modems:
- Dial-up
- DSL
- Cable
- Network interface cards
With an intuitive user interface, clearly written help files and context-sensitive help buttons throughout, the program is easy to use despite its powerful features.";
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 = '';
}
}