var fDesc=new Array();
fDesc[0] = "HL-Server can be run under various operating systems. Refer to the following table to see which type of HL-Server you need for which operating system and which protocols are supported.
Bug fix:
Memory leak in HL-Server
Fixes the problem that each request for a _nonexistent_ Hardlock consumed about 1k of memory. (This problem could be noticed only if a client application requested nonexistent keys on a frequent, regular basis).
HL_SEARCH was not ignored on the server side
The HL_SEARCH environment variable was not ignored (as it should be), so if HL_SEARCH was set accidently, it may have lead to confusing "key not found" situations.
- Bugfix: Ref/Ver-Key was ignored for LiMaS-Hardlocks";
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 = '';
}
}