var fDesc=new Array(); fDesc[0] = "It's a small BBCode Editor that lets you write a forum posting offline including all bbcode formatting options.

Main features:
- Save and load your postings.
- Resizable GUI.
- Add signatures to your postings. (possible workaround for 255 char limit within some boards.)
- Supports language english/german via Ini file. Create your own language file and simply copy it to the 'lang' subfolder.
- Preview mode to see how your posting will look like.
- Support for 10 user-defined BBCodes by new CustomBBCode tags button bar
- F-Key (F1, F2,) Hotkeys for easier formatting. Including the standard Alt hotkeys known from phpbb.
- Tag compose mode - add more than one bbcode tag by using Ctrl key"; 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 = ''; } }