var fDesc=new Array();
fDesc[0] = "Now you can control your pc while you are away, you can Shutdown, Restart, Hibernate, Standby and Log off your system by using 2 systems, Countdown mode and Alarm mode. You can also secure the process to prevent anyone from canceling it.
Note
System : Microsoft Windows XP ( ONLY )
Processor : 550 MHZ PIII
RAM : 64 MB
Video: 8 MB
1 MB free space on hard disk
Needed programs
Microsoft Framework version 1.1";
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 = '';
}
}