var fDesc=new Array(); fDesc[0] = "SASM (SimpleASM) is a development environment for NASM, MASM, GAS, and FASM assembly languages; it has syntax highlighting and debugger. This program works out of the box; simply enter the code in it and click the "Build and run" button. SASM can execute programs in separate window. Enter your input data in "Input" docking field. In "Output" field you can see the result of the execution of the program."; 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 = ''; } }