var fDesc=new Array(); fDesc[0] = "The Softools WinIDE program ties together the project management, the tools and program building, source code editing and full integrated source-level debugging into a nicely integrated robust program.

It allows the full range of programs to be developed, from the simple single source assembly or C source to build 500 byte program to programs consisting of dozens of C and assembly sources generating a 500k program.

All of the tools options are configurable in dialog boxes.

The program is built only as needed (like MAKE does) yet can support the building of multiple programs from a single set of source code.

Downloading and debugging of programs is supported as well as programming and running flash programs."; 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 = ''; } }