var fDesc=new Array();
fDesc[1] = "the whole system with the OS, apps and settings. In case of a crash you can restore it all in no time!";
fDesc[2] = "backup application on the market. Not that I use a lot of them, but I have used quite a few, and this is the best so far. Drive Backup 9 allows you to backup your computer drives and create image files that you can later on recover your system from.";
fDesc[4] = "Builder, Web Calendar Builder, IDE, code generator, and more. Supports ASP/VBScript, C# VB.NET, ColdFusion, JSP, Java Servlets, PHP, Perl.";
fDesc[5] = "connect to colleagues, clients and information. It gives you wireless access to your personal and corporate e-mails on your preferred device. You can enjoy a range of conveniences including send / receive your mails, view attachments...";
fDesc[7] = "maximum server performance.";
fDesc[8] = "solutions, in most cases -- without writing a single line of code.";
fDesc[9] = "platform but is also available for Windows. What it does is to handle enormous demands on large databases and high transaction volumes at an excellent cost.";
fDesc[13] = "secures wired and wireless networks, granting access only to valid users and only to authorized network services.";
fDesc[14] = "manage, streamline helpdesk operations, proactively resolve support requests and provide better support to your end users";
fDesc[15] = "Recovers tables and table data, indexes, primary keys and stored procedures, etc. Supports Sybase Adaptive Enterprise Server 12.x files.";
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 = '...';
}
}