var fDesc=new Array();
fDesc[0] = "7-Zip SFX Maker creates self-extracting executable (EXE) files from any 7-zip archive. The program combines a fast and simple conversion process with the possibility of fully customizing the way the executable file will interact with the user when double-clicked on.
These customization features cover where the file will extract, the overwrite mode, the messages it will show during the extraction process, and many other interesting settings.";
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 = '';
}
}