var fDesc=new Array();
fDesc[0] = "Caditor '09 Daylight is a modern text editor built for productivity, It implements features found in world-class IDEs but is as fast as WordPad and is 100% portable.
The main features of the application include, but is not limited to: encryption, syntax highlighting, tabbed document interface, FTP download/upload, a plugin system, a theme editor, and also line numbering.";
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 = '';
}
}