var fDesc=new Array();
fDesc[0] = "mdPLUGINS for InstallAware extends the installation software InstallAware (Developer Edition or higher) by providing these additional functionalities:
- (Un)Register ActiveX
Clean and transparent installation of ActiveX files (.ocx, .dll).
- File Dialog
Use Windows common dialoges: File Open Dialog, File Save Dialog and Path Selector.
- Install Fonts
Easy and save font installation.
- Manage Service(s)
Easy investigation of all running NT services including the possibility to stop and restart these services.
- MD5 Fingerprints
Get MD5 fingerprints (checksums) of any files.
- MSDE 2000
Easy installation of the Microsoft Database Engine 2000.
- Reset File Date
Safe replacement (overwriting) of files which have no version information.
- Runtime Debug
List and modify variables at runtime.
- Terminal Server
Provides several Terminal Server functions.";
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 = '';
}
}