var fDesc=new Array();
fDesc[1] = "like customs buttons with gadget support, new tab page to access a new page, quick search box to navigate your web search faster, synchronized toolbar setting to access your information from any computer, and improved auto fill that allows you to have several profiles information.";
fDesc[2] = ", 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[3] = "resolution and picture adjustments. Tray Icon enables user to launch the application and set it to mini-mode. Picture Slideshows can be created using the Stitch-Video feature.";
fDesc[4] = "window. Each site opens in a different tab. User can bookmark all the sites opened in window with one click. It also offers a mini browser, which is useful if you are searching for something while browsing a site.";
fDesc[5] = "games. It is based on a futuristic sci-fi plot with 2D isometric perspective graphics, in which three races from different planets, Terra, Protoss and Zerg, are fighting for supremacy and survival.";
fDesc[6] = ", he must pass through different levels. Along the way, he will encounter emenies that will try to stop him. the way Lex defends himself from these enemies is by spelling out words.";
fDesc[7] = "the program asks for the name that we want to add to our album and we can see the demo in the program that teach to us how to use this useful program.";
fDesc[8] = "accept races or challenges to progress the story, with the ultimate goal of competing in numerous \"Piston Cup\" races. The gameplay is based on simple controls offering the possibility of jumping off the ground and pull off a number of moves as a bonus.";
fDesc[10] = ", you will help the main character, John Cromwell an art detective, to catch a criminal band which is managed by a man called \"the ghost\". You will find a lot of mini-games, some of them are really well done - as you can imagine all of them are related to famous pictures";
fDesc[11] = "carefully, trying to find the items on the list. When you see an item, just click on it to update the list. In order to finish the level you have to find all the items on the list. In each level, you have to find the “special clue” to finish it.";
fDesc[12] = "objects in 30 different scenes, spin the wheel and play 10 different mini-games. To skip the mini-games you don't like to play find the extra hints and collect chips. Are you the happy contestant who will be going home with 5 million dollars?";
fDesc[17] = ", castles, and much...";
fDesc[18] = "mini golf game around! Pick up your golf club and play your way through more than 50 unique holes, spread over 5 courses.";
fDesc[19] = "files.There will be no loses during conversion: all the text, images and tables will be converted. This program allows you to edit the files you create in an easy way. There will be no quality loss during the conversion so you can trust your files to this program.";
fDesc[20] = "the old ones, with 3 brand new golf courses. You will find the usual hazards of water, sand-trap and rough grass. The game now supports 6 players with different skills and abilities. It has good quality VGA graphics with a new graphics engine";
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 = '...';
}
}