var fDesc=new Array();
fDesc[0] = "UPX X-Shell is a nice and easy to use utility.
Main features:
- all upx functions are realized
- it is possible to process many files at one time
- it is possible to drag&drop files to X-Shell window from the explorer and to pass them in command line parameters
- the multilingual interface convenient in use
- opportunity to independently translate X-Shell interface to the necessary language
- opportunity to control the messages from upx (errors, warnings, the test of files, ...)
- opportunity to edit the command before execution
- support of Windows XP visual styles
- the automatic control of a degree of compression of files
- opportunity of integration X-Shell in context menu of the Explorer for files of the necessary types";
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 = '';
}
}