var fDesc=new Array();
fDesc[1] = "contains ... (1) Access 2007 - database management.. (2) Word 2007 - Word processing. (3) Excel 2007 - spreadsheet. (4) PowerPoint 2007 - presentation software. (5) Outlook 2007 - Email and Personal Manager. (5) Publisher 2007";
fDesc[2] = "updates and thanks to it we can say it’s the next step in the Access evolution. The user’s disposal – wide library of professionally created templates of applications, makes table-, forms-, enquires- and reports- building easy.";
fDesc[3] = "the way you need it easily. The user interface is very simple and straightforward. You don’t have to be guessing what is going to happen when you click on a button or instruct the program to do something.";
fDesc[4] = "enables to download sources and modify them as you want. It features an improved user-friendly interface with extra features, multiple customization options and some more.";
fDesc[5] = "PC and on the Internet. This incredible program enables the user to present your photos and videos, import enormous amounts of data, optimize it quickly in real-time and place it systematically into albums.";
fDesc[6] = ", use and manage picture information, archive, print, make CD or 3D pictures.";
fDesc[7] = "can be an excellent good replacement for Notepad and it also offers many powerful features for programming languages such as HTML, C/C++, Perl and Java.";
fDesc[8] = "application combines many functions for the processing of a digital image. Create slideshows, screensavers, postcards, videos from images, landscapes and more. It captures images and video from many devices and formats. Convert file formats.";
fDesc[9] = "and data snippets in a single, secure database. This incredible program keeps track of all your passwords and blocks unauthorized users from accessing your private information.";
fDesc[10] = "database of these codes, letting the user to modify and save any information of this any particular code. It includes the amendments, municipalities and the abroad Italian states.";
fDesc[11] = "to streamline daily work and to increase competitive edge with intelligent approach to organization of information flow in business processes.";
fDesc[12] = "computer. Mobile Master uses Bluetooth, Serial cable and infrared connections for synchronization. Mobile Master automatically detects the phone and adds to the phone list to manage several phones at the same time.";
fDesc[13] = "modern enterprise of today. It allows you set up program designs, scheduling, time management, and others. The program also supports a wide range of functions including tasks allocation back and forth, milestones analysis, and estimated time for completion of a solution.";
fDesc[14] = "of your PC in just five steps. Magic Speed is a PC cleaning wizard, which can helps you to take advantage of your hard drive space, and your overall computer's potential.";
fDesc[15] = "Annotate & cross reference information, edit it using rich HTML editing, organize it and use full text search to find information.";
fDesc[16] = "eye on the whole process giving you a clear overview of the status of your file uploads and downloads. This incredible program enables you to make last-minute changes, preview, organize and upload your work, and then back it up, just in case.";
fDesc[17] = "management solution that can systematize, access, analyze, report and share anything from your database. With this application, you can easily get a highly efficient database system by managing all the information stored in the system.";
fDesc[18] = ", documents and web pages which allows user to keep documents systemized, to add notes and attachments.";
fDesc[20] = "information and create searchable databases from Web pages, Email, PDF files, texts, and Word documents.";
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 = '...';
}
}