var fDesc=new Array();
fDesc[0] = "UPS monitor is a simple tool that displays UPS information in real time. It can monitor a UPS attached to your computer, or a a network server plugged into an UPS.
Features:
- Saves your session if UPS switches to battery power
- Warns you when power is critically low
- Lets you monitor networked UPSes
- Remembers configuration and restarts when you log on
- Extremely easy to use (because there’s not much to actually use, methinks)
- Unobtrusive display as a tray icon";
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 = '';
}
}