var fDesc=new Array();
fDesc[1] = "ancient manuscript proclaims: “Align the relics you can see, across or down in groups of three. Turn all squares to solid gold, the path to riches will soon unfold”, and that’s pretty much what you have to do in the game.";
fDesc[2] = "reveal beautiful photographs. You can also download more images or add your own. You will be given puzzle pieces on a loading dock and you must click to use them into the car one at a time without leaving any gaps.";
fDesc[3] = "your brave gladiators! And the Temple of all the Roman Gods will bring you luck! The fabulous Caesar?s land opens its gates in front of you.";
fDesc[4] = "power and raise Atlantis, the submerged continent. This game is a great challenge of speed and logic. Graphics and moves of this game are well done and the game is very entertaining.";
fDesc[5] = "keep advancing from level to level. You will play at different stages, each stage is a different country. The game has got a nice storyline. You will be able to read the story from a book that will let you know what has happened and what will happen with the characters of the game.";
fDesc[6] = "desired difficult level. The harder the level, the smaller the pieces. You can go from a very easy 4 pieces puzzle to a very hard 442 pieces puzzle.";
fDesc[7] = "without compromising on its quality because normally files containing the images are of very large size and the speed of downloading or uploading is limited.";
fDesc[8] = ", weapons and magical powers to defeat your opponents, through ascending levels (up to 75) in your category. You will gain money after defeating an opponent.";
fDesc[9] = "instrument without any distortions. The software has an enhanced core technology which enables enhanced tracking as well as correction capabilities. It has a redesigned user interface which is refined for a smoother workflow.";
fDesc[10] = "worms, file infecting viruses, malicious VB and Java scripts, trojans, backdoors, spyware, adware, boot sector, partition table, file and macro viruses.";
fDesc[11] = "mix with other instruments for live performances or otherwise. The combination of Toontrack Solo, EZplayer Pro and EZdrummer or Superior Drummer allows the shaping of new MIDI grooves within the EZplayer pro arranger";
fDesc[12] = "now for Mac OS X. RagTime combines word processing, spreadsheet, pictures, drawing, charting, and slideshows, in an intuitive and easy-to-use layout environment. RagTime Solo is the free, full-featured version of RagTime for private, non-commercial use only.";
fDesc[13] = "well as cords for creating quality chord songs. It features real sounds and a two handed animated display which helps the user to understand how to play chord changes, with major, minor and 7ths chords.";
fDesc[14] = "recording and high quality up-sampling. Support wav, aif, flac, mp3, ogg. Play and rip back disc. Great user interface.";
fDesc[15] = "It extracts music score out of the monophonic audio records. You can display, play, edit, and save your music.";
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 = '...';
}
}