var fDesc=new Array(); fDesc[0] = "REBOL/View is built on the REBOL/Core kernel which includes 14 Internet protocols, compression, dozens of built-in datatypes, sandboxes, and domain specific dialecting.
REBOL/View includes a fast, machine independent, hierarchical compositing engine that includes a wide range of special effects and filters, including contrast, tint, blur, sharpen, scale, gradients, colorize, emboss, and much more. View also includes the Visual Interface Dialect (VID), a flexible graphical user interface that allows users to easily create applications."; 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 = ''; } }