var fDesc=new Array();
fDesc[1] = "applications and standards-based Web sites Designing Web pages in conditions equivalent to a real browser, without losing direct access to the code, thanks to the new Vista feature live Dreamweaver CS4.";
fDesc[6] = ", Webmasters can crawl targeted Web servers (or whole sites) automatically and create an index of their content. Once scanned, users of the Web site can perform searches using simple queries that will return targeted, meaningful results. Phantom also provides the Webmaster with powerful site management capabilities such as server mirroring and archiving, broken link detection, automatic updates, and more. By scanning servers using the Web, Phantom allows seamless searches of multiple servers. In fact, any number of Web sites can be indexed and searched by a single Phantom server. So, in addition to providing users an easy way to search their sites, Webmasters can also provide search capability for other related sites.";
fDesc[7] = "ISO/IEC 23026:2006";
fDesc[8] = "with varied additional properties pending minutes. You can publish them on a web site or email them to your friends and colleagues!";
fDesc[9] = "Consolo handles html, xml, xhtml, databases and Flash. Graphical interface makes editing easy and Consolo can be modified to suit specific needs.";
fDesc[11] = "Webgenz CMS makes front-end development more efficient and predictable while ensuring site-wide consistency and the separation of presentation and content.";
fDesc[14] = "a team to share information with each other, and with the world. Confluence's simple but powerful editing and site management features help sharing information, collaborating on documents and brainstorming ideas, all from a single web-based location. Confluence adds professional features rarely seen in wiki software (and especially not all in the same wiki package): flexible privilege-based security management, blogging, automated refactoring, exporting pages or entire spaces to HTML or PDF, a comprehensive remote API, easy 'unpack and run' installation; all wrapped up in Atlassian's 'Legendary Service'.";
fDesc[15] = "and external HTTP and FTP links. Creates a whats new and whats old page. Maps the structure of your site. View the results in the Explorer style interface or in a HTML report. Works from your PCs local drive or a remote server on any platform. Much more! Linkbot is short for Link Verification Robot. After entering a starting URL, Linkbot will traverse your Web site looking for brokenhyperlinks. The results of Linkbots analysis are summarized in a table that lists the status of each link along with many other useful statistics. It has some nice features like: 1) Gathers 15 statistics about each link: Link status, error number, link type, link file name, link base address, parent URL(s), link description, document title, last modified date,expiration date, authors name, file size, content encoding, content type, server software type and HTTP protocol version 2) Search depth options all...";
function tCollapseAll(maxID)
{
document.getElementById("alls_action").innerHTML = "Expand descriptions";
var id=1;
for (id=1; id <= maxID; id++)
{
if (document.getElementById("desc_" + id))
tShowHide(id, 2);
}
}
function tExpandAll(maxID)
{
document.getElementById("alls_action").innerHTML = "Collapse descriptions";
var id=1;
for (id=1; id <= maxID; id++)
{
if (document.getElementById("more_" + id))
tShowHide(id, 1);
}
}
function tShowHide(id, show)
{
var s = document.getElementById("more_" + id);
if ((s.innerHTML!=fDesc[id] || show==1) && show!=2)
{
s.innerHTML = fDesc[id];
}
else
{
s.innerHTML = '...';
}
}