var fDesc=new Array();
fDesc[0] = "Wake On LAN Ex is an application that allows the waking up, rebooting, shutting down - and more - of computers on the network or on the internet.
Depending on its WOL abilities, the destination computer can be sleeping, hibernating, or entirely off and still be able to react to a Wake-On-LAN event. WoLEX also supports logging-off and hibernating the remote computer, as well as displaying Windows Instrumentation information (such as uptime, CPU speed, and more).";
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 = '';
}
}