var fDesc=new Array();
fDesc[0] = "Lump Tool is a program similar to WinTex - the Doom WAD editor program. The main difference is that this program puts lumps in and gets them out as they are without any conversion - useful for MP3s, etc.
Features
- Join 2 or more WAD files together
- Insert - from files, other WAD files, textbox or blank
- Find out what lump names go with what events - e.g. Soldier injured - DSPOPAIN
- Replace
- Copy
- Delete
- Rename
- Export
- Text Editor for MAPINFO etc
- Move up and down
- Compile scripts with ACC
- Delete all
- Export all
- Find
- 0 bytes wasted WAD space
- Hex editor type view";
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 = '';
}
}