var fDesc=new Array();
fDesc[0] = "Arachnophilia is a Web page development workshop and general programming tool.
Arachnophilia is a powerful programming editor with some special HTML production and editing features. With it, you can:
Create HTML pages using a suite of powerful tools.
- Upload your Web site to your Internet service provider using Arachnophilia's built-in FTP service.
- Fully customize Arachnophilia's menus, toolbars and keyboard commands. Arachnophilia lets you create or remove any commands, toolbars, or menus you want to.
- Beautify, and analyze the structure of, your Web pages, so they will be more likely to be error-free and work correctly with more browsers.
- Create working environments for many kinds of programming tasks using Arachnophilia's fully customizable menus and toolbars.";
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 = '';
}
}