var fDesc=new Array();
fDesc[0] = "An archive manager supporting archives in ZIP file format. It enables users to create standard and
Self-Extracting Archives. The application allows to choose a compression ratio and provides basic
options concerning the save file path as well as the type of the file. Additionally, the program offers
a network drive connection and has a built-in FTP Client. Apart from the default ZIP compression,
the program allows users to extract files from ZIP, RAR, 7-ZIP, CAB, JAR, LHA, LZH, ARJ, TAR,
TGZ, GZ archives and to convert RAR files to ZIP files.";
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 = '';
}
}