var fDesc=new Array(); fDesc[0] = "cIDEE is a free C and ANSI C programming environment designed to satisfy the pedagogical requirements of first-year C and ANSI C computer science and computer engineering courses. IDEE functions as a wrapper around the open source MinGW compiler and Notepad text editor tools. Like those tools, cIDEE runs on Windows® operating systems and is released under a GNU General Public License."; 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 = ''; } }