var fDesc=new Array(); fDesc[0] = "TCompress is a very useful general purpose compression program. You can use it in database applications to compress blobs, in general purpose software to store user data in compressed form or as we do here at Qivx, to archive information that must go with the application.
CompRes is a utility that makes it easy to create TCompress resource files.
This utility automates the process of creating a TCompressed resource file which you can link to your Delphi (or C Builder) executable. It can contain multiple data, text, RTF or any other resources which you can normally load from a stream."; 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 = ''; } }