var fDesc=new Array(); fDesc[0] = "Flowchart is graphic method of representing algorithms. It is the best method of programming for beginners, because you don't have to know whole language syntax.

By programming in flowcharts you see what is happening. Many beginner programmers mistakes are problems with syntax and hierarchy. With graphical flowcharts you just see what do what. Moreover JavaBlock has many facilitations

Features:
- Making flowcharts
- Interpreting JavaScript or Python and testing maked algorithms
- Making simple programs without any big IDE
- Easy in use and light
- Easy sharing through pastebin
- Simple LOGO implementation
- Generating JavaScript and Python code
- Structures
- Plugin system"; 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 = ''; } }