var fDesc=new Array();
fDesc[0] = "UPnP Wizard allows you to manage all of the Universal Plug and Play (UPnP) port mappings on your router from one machine.
Main features:
- View all the port mappings that exist on your router.
- View detailed mapping information.
- Create new port mappings.
- Remove existing port mappings.
- Works with most routers that support UPnP.
- Includes command line version for scripting and automation.";
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 = '';
}
}