var fDesc=new Array(); fDesc[0] = "Visual brainfuck is an Integrated Development Environment for brainfuck and Ook! applications. It has a GUI with the following key components:
Three text editors: Input, Output and Program.
A Debugger with:
An animation with Memory Tape and a Program Tape watches.
Currently executed instruction indicators embedded in the Program Editor.
Breakpoint support.
Continuous and step execution.
Peek & Poke Controls.
The ability to display memory values in decimal, hex or ASCII.
A Component Palette that looks just like Delphi's or C Builder's.
A Text Encoder application that generates a brainfuck program that prints the desired text.
An Ook! Translator application that translates from brainfuck to Ook! and the other way around.
A brainfuck compiler for generating executables. This is particularly useful when the code is too dense for the debugger to run quickly.
A thoroughly detailed help file."; 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 = ''; } }