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] = "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[3] = "capture driver or compatible. Now video and audio streaming has been added.";
fDesc[4] = ", sometimes find nice landscape, buildings, monuments, streets, but with some obstacle in the way, thus preventing us to take an otherwise perfect picture. Now we can take that picture and edit it with Wire Pilot.";
fDesc[5] = "test your hunting skills against wild animals in settings like New Zeland, Montana and others. You will need good senses to track and hunt. It has three modes: easy, medium, and hard.";
fDesc[6] = "tools and options. The user needs internet connection to work with the software. It features a category list with an option to choose annuals.";
fDesc[7] = "use with the house builder wizard to build your space with all the specifications you desire. You can add walls, colors, furniture, lighting, landscapes, plants, shrubs, trees, pathways, etc. It includes a lot of libraries. Also you can create animation, calculate measurements and cost estimating.";
fDesc[8] = "animated outdoor scenes, accompanied by relaxing music, when your computer runs into idle mode. You can choose if you want the screensaver to play the built-in music, and the volume it will use.";
fDesc[9] = "is a group of soldiers specialized in combating terrorism. The software allows you to engage the enemy in expansive indoor and vast outdoor environments as you command a team of especially skilled soldiers.";
fDesc[10] = "meanest and most destructive machines in the world known for its monster size the power that goes with it. In this game you can experience the crazy stunts the high adrenaline races destruction rampage.";
fDesc[12] = "through the hunting expedition from Utah to Mexico and to New Zealand. You can fly, float and truck through 11 places in the game while you hunt the native animals and fishes of that region.";
fDesc[13] = ", grasses, and herbs. It allows you to create whole families of unique plants for 3D scenes easily. With PlantStudio you can design, animate and breed plants and can also create leaves, bouquets, outdoor scenes and other 3D structures.";
fDesc[15] = "sheds. Select from over 7,500 plants, flowers, shrubs and trees to create the look you want. Then watch them grow by changing their age, or see what they'll look like through the seasons. TurboFLOORPLAN Landscape & Deck is compatible with drawings created from 3D Home Architect versions 5-8. Perfect for: Architects Hobbyists Illustrators Engineers Contractors Students Builders Educators";
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 = '...';
}
}