var fDesc=new Array();
fDesc[0] = "LopeEdit is a powerful programmer's editor and a replacement of Windows Notepad. It has tabs to select between open files, supports syntax highlighting of multiple programing languages (C/C++, Java, JavaScript, Visual Basic, VBScript, XML, HTML, ASP, JSP, SQL, Cobol, C#, CSS, Pascal, Perl, PHP), incorporates build-in hexadecimal editor, some util docking windows (File Browser, FTP Browser, Favorites, Projects Manager, Multiple Clipboards, Code Templates Manager, ASCII Table, MS-DOS console), and more...
LopeEdit has two editions: LopeEdit Lite (freeware) and LopeEdit Pro (shareware). LopeEdit Pro includes advanced features that LopeEdit Lite doesn't include.
Supported Operating Systems: Windows 95/98/Me/NT/2000/XP/Vista/7.";
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 = '';
}
}