var fDesc=new Array();
fDesc[0] = "Npackd is an application store/package manager/marketplace for applications. It helps you to find and install software, keep your system up-to-date and uninstall it if no longer necessary.
Features:
- support for proxies (use the internet settings control panel to configure it)
- password protected pages. This can be used to restrict access to your repository.
- fast installation and uninstallation without user interaction. A typical application is installed and uninstalled in seconds
- dependencies
-additional scripts for more sophisticated installation and uninstallation can be defined
-shortcuts in the start menu are automatically created/deleted
-multiple program versions can be installed side-by-side";
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 = '';
}
}