var fDesc=new Array();
fDesc[0] = "UnZixWin is a new compression tool, created to give you an easier, faster and more powerful compression tool.
UnZixWin is a small Windows-based utility wrote after dissecting the format of a few ZIX archives found on popular bittorrent sites. Written in Visual Basic 6.0, it is crude and simple, but gets the job done.
It opens ZIX archives, presents a list of the contents, and lets you selectively extract whatever is inside. As a bonus, it warns you about some commonly known virus-infected things occasionally found inside.";
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 = '';
}
}