var fDesc=new Array();
fDesc[0] = "JOC Master Shutdown is a system utility for Win9x/NT/2000/XP/Vista that allows to automatically shutdown your computer, a remote computer or a complete LAN domain.
Key Features:
* Shutdown, restart, log off, hibernate, suspend or lock computer(s) immediatelly, at schedule time or by command line mode.
* Scheduled shutdown at a specific time each day.
* Shutdown or restart all the computers in a LAN domain immediatelly by clicking a button, scheduled at specific time or by command line mode.
* Rather than going to each computer individually, you can restart or shutdown all the computers in a LAN domain, by clicking a button. Saves time and work for network administrators from performing manually the same actions every day.
* Autologon feature allows to automaticly log in the system without type logging information.
* Command line options available for scripting.
* Saves work, energy and money.";
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 = '';
}
}