var fDesc=new Array();
fDesc[1] = ", documents and web pages which allows user to keep documents systemized, to add notes and attachments.";
fDesc[2] = "organizing information, thoughts, ideas, and knowledge. Perfect if you for instance feel you \"juggle to many balls\" at the same time.";
fDesc[4] = "information and create searchable databases from Web pages, Email, PDF files, texts, and Word documents.";
fDesc[5] = "being exposed to the underlying technology. It is ideal for use as the front end of custom XML and database-centric applications.";
fDesc[6] = "in your computer) by storing it in a Database. What you do is create an Ultra Recall Database (*.urd file). You can create any number of database files and save them anywhere, transfer them to another system, etc";
fDesc[7] = "Annotate & cross reference information, edit it using rich HTML editing, organize it and use full text search to find information.";
fDesc[8] = "and components. It can be used to implement document management, knowledge management, digital assets management or workflow applications.";
fDesc[9] = "capture, organize, and recall all of your electronic information across all the applications that you use.";
fDesc[10] = "within a local network. Chat in a group and draw on the whiteboard. Share, search and browse for files.";
fDesc[11] = "from Windows 98 to Windows XP and beyond and has very strong navigation capabilities and industrial-strength full-text search.";
fDesc[12] = ", and retrieve valuable information.";
fDesc[13] = "enterprise. Organize ideas, thoughts, questions, key information and related data in a simple, fast and efficient way during your daily work.";
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] = "networks! You can also easily change the database path inside or outside of Knowledge Base.";
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 = '...';
}
}