var fDesc=new Array();
fDesc[0] = "NetDrives is a Windows utility that helps you manage your network shares and mapped network drives.
NetDrives is free software.
- Simple configuration of network shares and user logins.
- Supports both UNC connections and mapped network drives.
- Quick access and monitoring of shares through system tray (optional).
- Optionally reconnects to selected shares on startup.
- Optionally starts with Windows and runs in background (system tray).
- Secure password storage (based on Windows Data Protection API).
- Open source (C-, WPF).";
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 = '';
}
}