var fDesc=new Array();
fDesc[0] = "JexePack allows you to deploy your Java application, along with its resources (like GIF, JPG, JNI DLLs, etc), into a single compressed 32-bit Windows EXE that targets Sun's Java Runtime Environment. Supports an EXE an a Windows NT service.
A great way to deploy your Java application as a Windows EXE because your end-users only see a standard EXE (with a nice icon that you define) -- and your program is still all Java and run by a Java VM.";
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 = '';
}
}