var fDesc=new Array();
fDesc[1] = "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[2] = "of satellite photographs. There are three versions, the free one for personal users, Google Earth (Enterprise) and Google Earth Pro. Many interesting features: Flight simulator, Sky and Mars, Street Views and 3D Buildings and the fantastic Google Ocean.";
fDesc[3] = "of your system, detecting all kind of unwanted files and threats, including spyware, adware, and, viruses. Its protecting Resident Shield will work in the background, keeping an eye on everything that attempts to install itself without your consent.";
fDesc[4] = "contact list, manage a household budget and keep up with your correspondence. Works gives you the basic tools you need to make your tasks easier from start to finish.";
fDesc[5] = "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[6] = "enables organizations to reliably manage mission-critical information and confidently run today’s increasingly complex business applications. SQL Server 2005 allows companies to gain greater insight from their business information and achieve faster results for a competitive advantage.";
fDesc[7] = "really easy-to-use since most of the utilities within the suite can be controlled and accessed through the Task Launcher homepage. The Works startup screen initially offers access to a calendar and contacts, but you can also view templates.";
fDesc[8] = "database that fits in a 2.5MB JAR file. Java DB 10.5.3.0 adds bug fixes plus message localizations to the features introduced in Java DB 10.5.1.";
fDesc[9] = "our operating systems and see our drivers update information and class, plus the supported OS, driver provider, driver version, if it is digitally signed, release date and file size. Downloading update for driver options is disabled in the non-registered version.";
fDesc[10] = "that make it the preferred database for web developers. Although It has some known bugs. Critical bugs sometimes do not get fixed for long periods of time. Also it shows poor performance when used for Data Warehousing.";
fDesc[11] = "application programs (like Microsoft Excel) and many DBMS (database management systems), using a standard communication protocol (ODBC, Open DataBase Connectivity), and even cross-platform.";
fDesc[12] = "to non professionals developers, but is built with the same technology than the line of SQL Server 2005. This version is more complete that the Jet Version, or the MSDE version.";
fDesc[13] = "under a master key (or a key disk) in one database.Therefore, you only have to remember one single master password or insert the key-disk to unlock the whole database, that´s encrypted using the AES and Twofish encryption algorithms.";
fDesc[14] = "University of California. The current release includes many fixes reported by its contributors and some new features like full text search integration, support for SQL/XML standard, and other more. PostgreSQL works in Linux, UNIX and Windows platforms.";
fDesc[15] = "for many games. The cheat codes for any game is available in the internet now, just by a Google search. Cheatbook database is for offline use, when you need a cheat code! The program database contains tens of thousans of cheat codes.";
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 = '...';
}
}