var fDesc=new Array();
fDesc[0] = "Excelsior Delivery is a tool to create professional and compact installers for Windows applications with minimum efforts. Excelsior Delivery is optimized to be as easy to use as possible.
It provides a wizard-style interface that guides you through the packaging process. The wizard suggests a rich set of reasonable default parameter values and requires only a few items to be filled in manually. In the best case scenario you will need just two mouse clicks to create an installation package without running packaging wizard at all.";
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 = '';
}
}