var fDesc=new Array();
fDesc[0] = "This software can compress data using LZ77 algorithm. MsCompress is a Microsoft "compress.exe/expand.exe" compatible (de)compressor. This package contains two programs:
- msexpand, which decompresses files compressed by Microsoft compress.exe utility (e.g. Win 3.x installation files)
- mscompress, which compresses files using LZ77 compression algorithm. Output files can be decompressed using Microsoft expand.exe or msexpand(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 = '';
}
}