var fDesc=new Array();
fDesc[0] = "SoftPlug is a network management application for windows.
Features:
- A toolbs bar which allow to save and restore configuration files and advanced parameters
- On the left side a threee level navigation tree called "Network tree"
* The first level describes networks configured and detected by the application.
* The second level manages Netplugs inside a network
* The last level allows to detect and configure resources behind a network
- For each nod of the tree the user is able to do actions through conbtextual menues, according the Netplug state.";
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 = '';
}
}