var fDesc=new Array();
fDesc[0] = "This software allows you to configure your router from your pc.
Features:
-802.11g Wireless Access Point -Wireless Access Point including WPA wireless security
-Supports virtual private network (VPN) pass through A VPN service will not be blocked from passing through the modem
-Universal Plug & Play (UPnP) Compliant
-Can dynamically join a network using standard TCP/IP protocol
-Dynamic Domain Name System (DDNS)
-Use this feature to automatically overcome dynamic IP assignment
-Integrated 4-Port Ethernet Switch
-Connect up to 4 computers to the LAN ports without the cost of a hub
-SOHO Firewall Security with NAT Technology and Packet Filtering
-Safeguards your network from unauthorized intrusion from external sources";
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 = '';
}
}