var fDesc=new Array();
fDesc[1] = "interact in the exciting world of Nevareth. Designed to let everyone play, Cabal Online runs even on older computers while still maintaining its scintillating action scenes, lifelike environments, ornate decorations, detailed characters, and non-stop fast action.";
fDesc[2] = ", mercenaries, towns, forests, seasons, the game has a great amount of content. If you can get around a few bugs at first, this is a game you will enjoy.";
fDesc[3] = "reflects the hack'n'slash spirit of Dungeon Siege, with some modifications. As it happened in the first part, every character improves his skill, as we make use of it, and becomes a real specialist in his field.";
fDesc[4] = "engines, measure and analyze traffic to your site. Instantly find out which keywords fit in well with your search engine optimization strategy. Analyze how well your site is optimized for search engines and find recommendations how to improve your rankings. Automatically submit your site to the best search engines, find the regularly updated recommendations on manual submissions and registrations with pay-per-click search engines. Check your site rankings in over 100 search engines. Live traffic analysis will provide you with actionable insight based on up-to-the-minute trends. Using over 160 analytical reports you will understand your visitors and answer questions that influence the bottom line of your business: where they come from, what they want; and why they don";
fDesc[5] = "down anyway. This is a free application that creates ISO images and allows you to burn ISO images. Now that we got that out of the way, lets focus on the interface.";
fDesc[7] = "game. The result is an interesting game that, even if it has flaws, contains several levels of depth and replayability. The game will certainly appeal medieval fantasy fanatics as it introduces new elements for the genre.";
fDesc[9] = "footsteps of the Commandos series. Who hasn't played Commandos, raise your hands? Well, I have and I loved it. I can't say the same about Korea: Forgotten Conflict. The game has top-notch visuals that are not way better than the old Commandos.";
fDesc[11] = "technical illustrations. It is bundled with many features like the support for 2d effects such as extended lines, opacity, and slash pen and thickness pressure. It features an anti-aliasing feature that results in a high quality output.";
fDesc[12] = "specific style. Excel 2000 or higher required.";
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 = '...';
}
}