var fDesc=new Array();
fDesc[1] = "XML-based protocol that is designed to exchange structured and typed information on the Web. The purpose is to start up rich and automated Web services based on a shared and open Web infrastructure.";
fDesc[2] = "existing FrameMaker users who want to author and publish technical documentation in multiple languages. Adobe FrameMaker 8 software combines word processing and XML-based structured authoring with template-based publishing.";
fDesc[3] = ", Insert, Format, Table, Tools, and Help. From the File option, it is possible to change the language, create and manage a database, search for records, backup, restore, import/export, print, and many more.";
fDesc[4] = "personal life. What's unique about the app, is that it allows you to store all of your contacts, tasks, notes, and to-do lists divided into tree-structured categories. In addition, each item (be it a note, task, contact ,etc) may belong to several categories (tags).";
fDesc[5] = "of mathematics. The program's simple and structured office type interface provides you with easy access to tools for creating mathematical diagrams like points, lines, curves, circles and midpoints that can be freely manipulated by you.";
fDesc[6] = "PowerPoint, and text document. Its compact and well-structured interface makes it easy to use for both the novice and the expert uses. Its high conversion speed is one of its main assets.";
fDesc[7] = "friends, business and career, among other categories selected by the user. It also includes a to-do list that enables you to add important events or tasks that require immediate attention and you can also also add reminders or recurrence.";
fDesc[8] = "structured Microsoft Office Excel documents. A remarkable performance is the conversion speed: according to the publishers it can convert up to 450 pages a minute, so even long PDF documents are converted to MS Excel files in a very few minutes.";
fDesc[9] = "note can be saved the way you want. The program comes with advanced options that will let you alphabetize notes, rename notes and delete notes.";
fDesc[10] = "Besides, this easy-to-use tool is also a powerful splitter that will cut your large files into smaller ones to fit into any of the most popular storage media. This free tool comes with a clear and well-structured interface.";
fDesc[11] = "process to execute their part, regardless of where they are located. All that is required is an Internet connection and you can work from anywhere since everything is in one central location that is accessible through the website.";
fDesc[12] = ":) Can be used instead of messaging service/WinPopup for LAN. A lot of options for every application aspect";
fDesc[13] = "will allow you to make the most of this new standard of digital talking book. Its self-voiced interface will help you navigate through the structured audio, text (when available), and Braille, of both DAISY 2.02 books and OPF package files containing a DAISY/NISO Z39.86-2002 file set.";
fDesc[14] = "place, calmness, and time for writing your research paper, dissertation, etc.";
fDesc[15] = "within a single document, avoiding creating a lot of separated files on the disk. One single data file for a whole \"tree\".";
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 = '...';
}
}