var fDesc=new Array();
fDesc[1] = "unlock clues needed to escape from a secret island! You’re stranded on a secret island, and there’s only one way off! Find hundreds of hidden objects underwater and on land that will help you match cards and unlock clues needed to find your way home!";
fDesc[2] = "first.";
fDesc[3] = "aliens that are threatening the Earth. As you complete missions you get money to buy new and more powerful weapons, and be able to fight toughter aliens each stage.";
fDesc[4] = "1000s of artists. You will also be able to listen to music on your PC, mobile player or as ring tones on your mobile phone. With Radiotracker, you will have in your hands the gift of unlimited music all day, free and legal.";
fDesc[5] = "beginning, but as you keep on advancing you will notice that the difficulty will increase. The game has great graphics, nice music and sound effects and is very funny and entertaining.";
fDesc[6] = ", your adventure will begin after knowing that your grandfather left you a strange and old coffer. At the beginning of the game, you will see an explanation about an ancient pirate treasure, which had an unique artefact,";
fDesc[7] = ", 3gp and more. When we open the program we can find a Menu Bar and three tags they are: organize photo, choose menus and burn disc. In the Organize Photo tag we can see our folders in one window and the files that we select in the other window.";
fDesc[8] = "travel around the world discovering funny facts about each city you visit. Design your own layouts or customize the game with the additional modes. Listen your own music while you play Mah Jong Adventures.";
fDesc[9] = "on LP to the music on CD and even DVD. Turn your PC to the sound-recording studio by means of iRecordMax Sound Recorder! Anyway you will get audio files of high quality.";
fDesc[10] = "You can start selecting the genre you want to listen to, then the artist, the album and the song. Once you get to the song, Music Oasis will start playing it, showing you information about the Artis, Album and Song in the right panel.";
fDesc[11] = "hardly compared with Pro version or ACID Music Studio, as there are restrictions in every second menu point. Besides, this program doesn’t support VST and DirectX. But in spite of these things, these restrictions will probably not disturb undemanding users.";
fDesc[12] = "SP-MIDI (polyphonic) music optimized for your mobile phone, and generates ringtones that are compatible with a wide range of devices. You can take any MIDI file and modify it to create your desired ringtone.";
fDesc[13] = "forces and recover the realm. You will be fighting against evil spiders, cyclops, orcs, and wizards among other creatures. Be sure to catch all the spells and bonuses after destroying your enemies, this way it will be much easier to kill the monsters at the end of each level.";
fDesc[14] = "notes in a very simple way. You will be able to add notes by simply clicking with your mouse. You do not have to be an expert on software or a great musician in order to use this program.";
fDesc[15] = "create music. Kids enjoy recording their own vocals; and be creative in their own way.";
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 = '...';
}
}