var fDesc=new Array(); fDesc[0] = "Wing 101 is a very simple free Python IDE designed for teaching beginning programmers. It omits most features found in Wing Pro.
If you are new to programming, check out the book Python Programming Fundamentals and accompanying screen casts, which use Wing IDE 101 to teach programming with Python.
Wing 101 is free to use for any purpose and does not require a license to run."; 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 = ''; } }