var fDesc=new Array();
fDesc[1] = "more from their player. Its forward backward button option, media library, online music search option, minimode are very useful additions. All this packed in a simple interface and makes it a great media player to work with.";
fDesc[2] = "technologies like HTML, Ajax or Flash. Developers can take advantage of their knowledge in website creation to develop multimedia applications. In other words, from a web application they can create a general application with the contents and utilities of a web application.";
fDesc[3] = "can download it free from the developer's website and install it again in case we need to. This tool have been designed for connecting our computer to the HP website and automatically check up for all of our HP devices and HP software.";
fDesc[4] = "firmware to enjoy new functionalities. The only restriction is that this software is only meant for recent devices of Series 40 or S60; all of these from any Internet enabled broadband connection.";
fDesc[5] = "powerful proccesors for real time gaming. AGEIA PhysX 8.0 is a free and unique physics engine for all GeForce 8-series, 9-series and 200-series GPUs, bringing an innovative experience when playing the latest games.";
fDesc[6] = "panoramic image in a matter of seconds without being an expert. It allows you to stitch the selected photos into a fanstastic panoramic masterpiece in three modes: Vertical Panorama, Horizontal Panorama and 360 Panorama.";
fDesc[7] = "previous versions. Given the number of race days you need to win, it takes quite a long time to get to the end, thus making the game a little uninteresting. While graphics are realistic, ProStreet's audio isn't very good and this definitely makes the game not as good as expected.";
fDesc[8] = "a single, multifunction device, making it one of the most exciting products on the market today.";
fDesc[9] = "after Oahu. You can drive through the streets and hills on over 125 vehicles licensed for the game. With good challenges and a solid multi-player support this game is a fine choice for car junkies.";
fDesc[10] = "expansion pack--or a supplement--to the previous game. It features a tense and exciting stealth action gameplay, a very good sense of style and some interesting, open-ended missions. The new missions are certainly diverse and are quite interesting.";
fDesc[11] = "fictional in nature. That is to say, there is an alien species and technology is much more advanced that the tech present in Battlefield games. But the gameplay is kind of the same.";
fDesc[12] = "care about creative persons and released the phones’ platform Series 40 software - Nokia Series 40 Theme Studio. Using it you can develop and edit design themes.";
fDesc[13] = "the program is mainly created for S60 devices. The program seems to support 1000 customizable theme elements in the S60 User Interface.";
fDesc[14] = "Baudelaire (Violet, Klaus and Sunny) and their friends will have to fight against Count Olaf to stop his dastardly deeds through different worlds This puzzle game can be played in two modes: Swap Monster for younger players, and Deduction Junction for older kids";
fDesc[15] = "players to play in the World Series of Poker against world class players and win a championship bracelet for the $10,000 main event. In the game, players must put their poker skills to the ultimate test and compete against champions of the game in virtual tournament venues and locations";
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 = '...';
}
}