var fDesc=new Array();
fDesc[0] = "RestockChecker is a small application that checks in the selected intervals when the service Lockerz zone will be opened with prizes.
Features:
- Check in the selected intervals when the service Lockerz zone will be opened with prizes.
- The interval of uncertainty to the 10s at selected intervals: ~ 1min, ~2min, ~ 3min. The inaccuracy was deliberately added to prevent receipt of the account lockout / IP (Ban) from Lockerz.
- Checking Lockerz Service by clicking once an icon visible in the system tray.
- At a time when the program gets information about the open area of the prizes will inform you of the voice.";
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 = '';
}
}