var fDesc=new Array();
fDesc[0] = "Extreme Editor - A programmer's text editor
Designed to focus on code editing with an interface that is simple and minimal: A tabbed interface with no toolbars or colorful distractions.
Features
Supports full-screen mode.
Syntax highlighting for several languages: C, C , Assembler, Pascal, Python, Perl, Ruby, XML, CSS and many more.
Text formatting tools.
It has a simple Hex viewer.
It is a standalone binary: no DLLs or other installation hell. Copy the application to a flash drive and take it with you.";
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 = '';
}
}