var fDesc=new Array();
fDesc[0] = "EditPad Pro is a powerful and versatile text editor or word processor. Designed to make text editing as convenient as possible, using EditPad Pro to edit text files will save you a lot of time and frustration.
With EditPad Pro you can edit any kind of text file, not only plain text documents with a .txt extension. HTML files for a website, XML data files, scripts in languages like Perl or PHP, source code in C#, Java or Delphi, INI configuration files, etc. are all plain text files that you can easily edit with EditPad Pro.";
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 = '';
}
}