var fDesc=new Array();
fDesc[0] = "Paquet Builder lets you create installers for your software applications. It is a mix between a Self-Extracting 7z archive maker, and a software installation generator. This program uses LZMA2, BCJ2 filter, PPMD, and other file compression systems to create a compact installer. You can customize your installer wizard, icons, copyright page, etc.
Paquet Builder is available in Personal and Commercial Editions, with the latter having an additional Command-line Console Compiler.";
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 = '';
}
}