var fDesc=new Array();
fDesc[1] = ", DVD-R/RW, DVD+R and other formats (high definition videos included). The new version of PowerDVD offers many new features; for instance, True-Theater HD (which boosts up low resolution videos to higher resolutions) and True-Theater Motion which allows to increase the frame rate.";
fDesc[2] = "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[3] = "costings. As in previous versions, you can print your travel plans, share them online or though e-mail. You may follow them in your vehicle to make your trips easier and more comfortable.";
fDesc[4] = "one of his trips to the Middle East and realizes that selling arms is not a good business for his soul. He develops a robotic suit that helps him fight foes left and right. The game features awesome graphics and many weapons that can be used from within the suite.";
fDesc[6] = "Canada without having to connect to the Internet. Take the software along with your laptop while you drive. The spoken instructions and street names help you find your destination with easy, and with the automatic redirection is very easy to return if accidentally passed a turn.";
fDesc[8] = "manufacture of chocolates. You’ll have to learn to produce chocolates, get recipes, negotiate with dealers, and go travelling around the world to get some exotic ingredients and hard-to-find recipes. It's a strategy game in which you will be receiving several missions to accomplish.";
fDesc[9] = "so you can relax and let nothing be randomly decided. Streets and Trips features a complete set of maps of the USA. All the streets and routes are presented in detail.";
fDesc[10] = "you can relax and let nothing be randomly decided. Streets and Trips features a complete set of maps of the USA. All the streets and routes are presented in detail. You can define a start point and an end point, and the application will give you driving directions.";
fDesc[11] = "At startup, we can select several options, such as full screen, video mode, music volume, sound volume, voices. In this game, we but click on the colored blocks as quickly as possible and make them disappear, before the laser ray of the green frog hits the blocks.";
fDesc[12] = "street maps, travel information, and points of interest from USA and Canada and now it includes Mexican highways. We can plan our trips with the planning tools. The GPS features include voice commands, color maps, etc.";
fDesc[13] = "memorable. It can used on videos or pictures taken while you are on Road trips or beach holidays. Just put the pics/videos, add some music & make your vacations unforgettable.";
fDesc[14] = "Canada, and also for the cab managing and scheduling teams. This piece of software provides a quick summary of whatever a particular driver has done in the shift till that point of time and what more can be done in the rest of the duration.";
fDesc[15] = ", repairs, contacts and much more. Analyzes what affects your catches. Export data to HTML for your personal web page.";
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 = '...';
}
}