var fDesc=new Array();
fDesc[1] = "use. Whenever a more recent version of any programme becomes available, Software Informer notifies you and offers a link for downloading the update. It also allows you to keep track of comments and questions on corresponding software.";
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] = "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[4] = "configurable popup calendar that opens when the systray clock is clicked. No more double clicking on the clock just to view the calendar in the Date and Time Properties dialog box.";
fDesc[5] = ", ALZip is free, it handles over 30 compression formats, including ISO, plus it is twice as fast extracting files as WinZip. Among other useful features, the program also includes a password recovery tool.";
fDesc[6] = "satisfy all of your clients to get money and grow in the business. The game is really easy to be played, you control it all by using your mouse. You will have to take orders, clean dishes, take the orders to your personal chef and deliver the food to your clients.";
fDesc[7] = "ability is basically to look up for errors in the system registry, kind of an important part of your system. Professional tool for only 24,95 dollars";
fDesc[8] = "images together with different layouts, templates, photo frames, mask effects, cliparts and word arts. Created collages can be saved, printed, sent via E-mail or saved as wallpapers.";
fDesc[9] = "and most of them are really good. So, when you have to make up your mind, it is often a tough choice. This one is perhaps not as well known as the other contenders, but it definitely does not lack in the feature department. All you might expect is here.";
fDesc[10] = "Racing\". Here you will become a driver of a nice sports car, and your mission will be to compete in illegal street races through big cities, and in this way, earn money, prestige, and make improvements to your sport car.";
fDesc[11] = "through. Also you can create several calendars at once, add the calendar of your friend, invitations and search events in public calendars. You also learn the weather forecast here. And the main advantage of the Google Sync Calendar is synchronization with Microsoft Outlook.";
fDesc[12] = ", throughout most of the game, it fails to bring anything new to the world of FPSs. The graphics are nice-looking; the world is depicted with careful regard to realism.";
fDesc[13] = "you the possibility to work among many desktops, where you will be able to change from one to another in a 3D visual way, just pressing hotkeys or with your mouse, and even you will be able to drag and drop windows from one side to another.";
fDesc[14] = "nice graphics, and introduces a quest mode, where you can get lots of variations and levels that make it really addictive.";
fDesc[15] = "computer in a better and effective manner. It also gives you an insight into your computer system's current state such as cpu, memory, latency, uptime and much more.";
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 = '...';
}
}