var fDesc=new Array();
fDesc[0] = "Windows UPnP Browser is a "Browser" application that discovers any UPnP devices present in the local network. The application is built on top the the Microsoft UPnP COM API:s. The API:s are called from C# in running in the .Net 2.0 framework.
Features
* Tree view of all visible root and child devices in the network
* Automatic update when devices are added/removed from the network
* Device details for all devices
* Listing and generic invocation of device services
* Download and presentation of the device description document
* Specific device control of Internet Gateway and Media Server";
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 = '';
}
}