var fDesc=new Array();
fDesc[0] = "Network UTilities Set - For network administrators.
This is a package including most of my programs for network administrators,
in a single download with fast and simple installation
The package includes the following utilities:
* ALO - Automatic log on to NT4/2000
* BALM - Blocked Attachments List Manager, for Outlook Express 6 email security.
* GetMem - A very simple tool to assist in diagnosing virtual memory problems in Win9x/NT/2000 by simulating a memory intensive application.
* KIT - Keep In Touch. PING to a list of hosts, and send email if one goes down.
* M - Mirror (replicate) files over the network for backing up important data.
* MAILIT - Send email (SMTP) from a batch file.
* NetRun - Schedule actions and push installs to clients from the login script.
* NewUser - A sample VB script for Win2000 server to quickly add new users.
* NOSCRIPT.ADM - A custom Poledit template, for disabling VBS and other script files
from running on your clients computers.
* Permiter - Set NTFS permissions in NT4 for specific user/group without affecting other.
* RegToADM - Create custom ADM (poledit templates) from a REG file.
* TestFile - Test "baseline" network performance in file save operations, without the need to set up a "responder" on the other 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 = '';
}
}