var fDesc=new Array(); fDesc[0] = "Tryit Editor is a lightweight HTML editor that uses CodeMirror to highlight code. It features an easy to use WYSIWYG interface with preview pane that lets you see exactly what you get, as well as many functions, such as saving to local disk. Features automatic updates of main script files."; 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 = ''; } }