var fDesc=new Array();
fDesc[0] = "iShutdown will shut your system down after a specified duration of time. The maximum of this duration may be 4 days (96 hours). There are four options available: shutdown, hybernate, standby, and restart. The .Net 2 Framework should be installed in order for the program to function.
Please check regurarly at:
http://k.galanos.googlepages.com
for any upcoming updates.";
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 = '';
}
}