var fDesc=new Array();
fDesc[0] = "DesyEdit is powerful and useful editor for Windows. It also offers many powerful features for programming languages such as C/C++, Java, SQL, HTML, with syntax highlighting.
DesyEdit is not only use small system resources but also load fast. so it can serve as a good replacement for Notepad.
DesyEdit offers Column editing, Integrated HEX editing, syntax highlighting, project support, macro recording, FTP support and so on.
In addition, DesyEdit is 100% universal freeware.
You can experience the convenience through DesyEdit that coninuous updates.";
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 = '';
}
}