var fDesc=new Array();
fDesc[0] = "Software Lag Switch is an utility that allows you to slow every computer on the network or just your own.
Features:
- Quick access to simple Windows Firewall controls, for instance while running suspect applications.
- Global hotkeys which allow Software Lag Switch to run in the background and be used while other applications are active without alt-tabbing.
- Hotkeys which can be toggled or used on demand (for quicker response time).
- Pulse lag on and off at configurable intervals.
- Sound notification/confirmation.";
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 = '';
}
}