var fDesc=new Array();
fDesc[0] = "My WiFi Service Router Configuration is a Windows utility that help you to configure your wireless router to work with My WiFi Service. This utility, using a simple wizard, will help you in the router configuration, running two operations:
- Installing a DD-WRT, OpenWrt or CoovaAP firmware on your router.
- Sending a configuration script to your router.";
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 = '';
}
}