var fDesc=new Array();
fDesc[0] = "Document.Editor is a multitab .Net/Ribbon UI based text editor for Windows XP, Vista and Windows 7.
Includes support for opening FlowDocument, Html and plain/rich text formats and support for saving FlowDocument and plain/rich text formats.
Multiple tab interface so you can edit more than one document in a session, compact application size, and multiple Edit/Insert/Format commands.
It supports editing commands like undo/redo, cut, copy, paste, delete, select all, find and replace; inserting objects, images, links, text files, tables, date and time into your documents.
You can format with font, font color, highlight color, bold, italic, underline, strikethough, subscript, superscript, indent more/less, bullet/number lists, align left/center/right/justify, line spacing and ltr/rtl.
Document.Editor also supports Spell Check, Text to Speech and Translate.
You can also export documents to email, ftp server, zip archive, image or sound.";
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 = '';
}
}