var fDesc=new Array();
fDesc[0] = "- PC Serial Nr is written in Visual Basic Scripting and is based on WMI
- You can find the icon on top of the 'Start'-button
- I packaged the tool in a .MSI file. This makes a very easy distribution possible to the users desktops. (SMS, AD, ZENWORKS, logon scripts, etc....)
- Tested platforms : Windows NT/2000/XP/2003. Runs not on Windows 9x";
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 = '';
}
}