var fDesc=new Array();
fDesc[0] = "Bash HTML Editor is for those who prefer to hand-code their webpages, and is designed to be completely utilitarian.
With Bash HTML Editor, you can insert any type of content, such as images and tables, with only a few clicks.
Some of the features: color-coded HTML for easy editing, built-in FTP access, quickly make site-wide changes with the Multi-File Processor, create forms, image maps, and dropdown menus with ease, and much more.";
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 = '';
}
}