var fDesc=new Array();
fDesc[0] = "QuickZip 5.1 allow you to perform powerful archive operations over a wide range of archive types using a familiar explorer like interface.
Feature file explorer like interface, allow you to access disk folders and archives in same interface without learning a new software. Extract and Add can be done via drag & drop or Toolbar commands.
Most features is implemented, including thumbnail (by changing to view mode in toolbar), breadcrumb, back/next button and history list.
Allows you to work with wide range of archive extensions including the popular Zip and 7z format.";
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 = '';
}
}