var fDesc=new Array(); fDesc[0] = "TwinEditor is a great free editing tool.
TwinEditor has two windows; the upper design window and the lower source code window. Design Window (the upper window) enables WYSIWYG editing of HTML page. The page can be edited in the same way as using word processor. Source Window (the lower window) provides editing and tuning up the source code of HTML directly. One of the most remarkable feature of TwinEditor is the synchronization between two windows. The cursor movement in both windows correspond to each other. If you move the cursor in one window, the cursor in the other window goes to the corresponding position."; 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 = ''; } }