var fDesc=new Array();
fDesc[0] = "A full-featured Java/.NET Vietnamese Unicode text editor. Open, edit, convert, print, and save Vietnamese text-based files in Unicode formats.
Features:
- Multi-platform
- Windows
- Solaris
- Linux/Unix
- Mac OS X
- Others
- Unicode compatibility
- Read/Write UTF-8 and UTF-16 formats
- Common Vietnamese input methods
- VNI
- VIQR
- Telex
- Unicode Precomposed (NFC) conversion support for Vietnamese legacy (VNI, VPS, VISCII, VIQR, or TCVN3), Numeric Character References (NCR), UTF-8, and Unicode Composite (Decomposed or NFD) formats
- Full localization
- Sort Vietnamese words
- Vietnamese spell check
- Add/Strip/Normalize diacritics
- Undo/Redo edit
- Find/Replace with Regular Expression support
- Change case
- Remove line breaks
- Shorthand
- Auto-detect file encoding
- Font preview
- Printing
- File & Text Drag-and-Drop capability
- Look & Feel for different operating systems";
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 = '';
}
}