var fDesc=new Array(); fDesc[0] = "Visual-MinGW is an Open Source project. The aim of this project is to provide an Integrated Development Environment for MinGW compiler. (Minimalist GNU for Windows)
Development started during July 2001 with following goals: Provide a "Minimalist" Open Source IDE, developed with nothing more than itself and built with MinGW compiler,
make it as small and fast as possible, using only Windows APIs, make it easy to use for beginners and as powerful as possible for advanced users, specialize one module of its code for simple and reusable C++ objects that will provide ready to use application skeletons, a quickly way to create a dialog box, SDI or MDI based project."; 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 = ''; } }