var fDesc=new Array();
fDesc[1] = "new, intuitive interface aimed to streamline your work flow. Also, many of the features that were dispersed in several menus, now are under the Office button.";
fDesc[2] = "Bars\". Microsoft Engineers now thougth it would be a good idea to change all the menus in order to make easier to see at a glance, Lets wait a little and see what the users think about this new experience. I think the change is good, but not that good.";
fDesc[3] = "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[4] = "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[5] = "forum is very big, with a lot of file uploads. Uploads include a variety of contents like software, games, videos computer, recreation, sports, etc.";
fDesc[6] = "programs are not able to detect or remove these types of viruses, but Trojan Remover will explore your computer for trojans and other intruders with similar purposes.";
fDesc[7] = "powerful features to enable building comments, reviews and forms. You can control and create your digital signatures and protection options.You can edit your PDF by inserting text, images, merge, split, crop, rotate. The program installs a toolbar for Microsoft Word,PowerPoint and Excel.";
fDesc[8] = "alerts and forecasts. You can choose Forecast, and access the weather information for the oncoming days. You can also view Radar & Maps, Severe Weather Warnings, Live Traffic Cams, Weather News, Outdoor Health, Weather Fun, Photos and Videos.";
fDesc[9] = "trips and preparing holidays for the Sims. The expansion offers three different destinies in which the Sims can spend some days far away from their houses of their work, on holidays";
fDesc[10] = "keep advancing from level to level. You will play at different stages, each stage is a different country. The game has got a nice storyline. You will be able to read the story from a book that will let you know what has happened and what will happen with the characters of the game.";
fDesc[11] = "these files to different recipients into an email service. WinZip E-Mail Companion 2.0 it’s a software that will help you to avoid the action of the e-mail returned, because the attachment exceeded the size limit. You will never get an e-mail returned anymore!";
fDesc[12] = "developer’s website. It is possible to try for free the downloadable demo version for 14 days. In fact we can play only for 7 days, leaving the rest for warming up. Most of the features are only available for the registered version.";
fDesc[13] = "will tell you more about it. Your soul has been taken away from you by the ghost of an old creepy man. Your soulless body can't survive like that, so you have to find it and get it back.";
fDesc[14] = "Jules Verne entitled Around the world in 80 days. Oliver, who is the game´s main character takes his limit time on the time Philéas Fogg took to finish his round the world tour, in a way to know if he is in advance or late in his trip.";
fDesc[15] = "any two dates, date X days from any date. Apointment reminder.";
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 = '...';
}
}