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] = "shall get a lot of services from windows live. It is a free service created by Microsoft. But there are many features that you will need to pay for like the Windows Live Call, which is something like Skype.";
fDesc[3] = "shockwave is very small in size and takes couple of minutes to download and install in a computer.The installation process runs in back ground so it does not disturb your routine work";
fDesc[4] = "in-built disk defragment tools which actually work but Smart Defrag works even more faster and uses advanced technology to speed up your disk drive and processing.";
fDesc[5] = "in PowerPoint 97 and later versions. It supports opening password-protected presentations. You can view and print presentations, but you cannot edit them in the PowerPoint Viewer 2007.";
fDesc[6] = "kind of tasks had to be done using DOS applications that required a great deal of know-how. Now, thanks to Partition Magic, users can create, delete, copy, merge, split, and format partitions and discs, and change their file systems.";
fDesc[7] = "seventh delivery of the Grand Theft Auto saga. The game contains new and numerous improvements over previous releases, but with the same spirit that characterizes this saga of controversial video games.";
fDesc[8] = ", 2003, 2002, or 2000. You may copy text or graphic into another program, but you will only be able to open the document for editing if you have Microsoft Word installed.";
fDesc[9] = "you ask me. The franchise started back in the year 1993 on the Sega genesis. Since then, this game has been improving in almost every aspect possible.";
fDesc[10] = "Tablet PC. Windows Journal is a program that you can use on a tablet computer to take, organize, and mark up handwritten notes. You can view notes and templates in Windows Journal Viewer 1.5 as read-only files.";
fDesc[11] = "Microsoft Excel Viewer you’ll have the possibility to access to all the files created with Excel 2007, 2003, 2002, 2000 and 97. This program is a viewer, so it’ll allow you to see the files and print them, but it won’t allow you to edit the files created by Excel.";
fDesc[12] = "download this small yet powerful application to create stunning themes for your device. As its name suggests, with this program you will be able to design custom themes, controlling almost every detail of them.";
fDesc[13] = "from virtually any application. With one click you can convert your Microsoft Excel, Word or PowerPoint documents or your emails and favorite web sites to PDF files.";
fDesc[14] = "types can be easily added via an configuration file). This program can automatically scale the pictures to be fit in front covers, back covers, front inside, CD and DVD Boxes, and CD/DVD labels to the correct sizes.";
fDesc[15] = "programming environment is completely graphical. Games created with this software are built through elements that you can drag and paste as if they were LEGO pieces. Thus, creating a small program is a simple and fun process.";
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 = '...';
}
}