var fDesc=new Array(); fDesc[0] = "DJGPP is a complete 32-bit C/C development system for Intel 80386 (and higher) PCs running DOS. It includes ports of many GNU development utilities. The development tools require a 80386 or newer computer to run, as do the programs they produce. In most cases, the programs it produces can be sold commercially without license or royalties.

The purpose of DJGPP is to give you the ability to create new software, from scratch. Since you and the computer don't speak the same language, what you type must somehow be converted into a language the computer understands. This is what a development system does. DJGPP includes all the tools you need to develop programs, including an editor (emacs), compiler (gcc), debugger (gdb), and the runtime (libc)."; 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 = ''; } }