var fDesc=new Array();
fDesc[1] = "original release, such as: improved visual quality; getting elements from dead creatures is no longer considered a crime. It also offers several fixes and improvements to the performance of the game as well as enhancements to the development of the quests.";
fDesc[2] = "other activities. It lets the user quickly find the stuff that helps them perform tasks faster like files, e-mails, contacts, music, presentations, etc.";
fDesc[3] = "for prince Albrecth who had disappeared. Unfortunately, Tristan’s people were massacred by the horrible daemons inside an underground labyrinth in their search for the prince.";
fDesc[4] = "level dungeon, a new set of armor pertaining to an assassin, new clothes and new weapons. And finally, it also adds new items and nine new scrolls which turns iron ore (new as well) and silver nuggets up one level(i.e. Iron ore turns into silver and silver into gold).";
fDesc[5] = "armor. The first set of armor is free, and if you do not have a horse with you, you can actually get a horse (an Old Nag) for free from Snak gra-Bura. There is no difference, other than appearance. Putting armor on the horse has the game effect of increasing the health of the horse.";
fDesc[6] = "scrolls, the distance in miles or kilometers, etc. It can be very helpful for those of us interested in or suffering from musculoskeletal disorders caused by repetitive movements. it can prevent repetitive strain injuries providing important information on keyboard and mouse usage by our kids.";
fDesc[8] = "save to a file, copy to Clipboard, upload to a server or email. Use it for importing text from unsupported document formats";
fDesc[9] = "Studios, and published by Bethesda Softworks and Ubisoft. It is the third release in The Elder Scrolls series of games.";
fDesc[10] = "anywhere on the desktop. The text appears in a so-called \"appbar\" which is similar the the Windows Taskbar. All settings are saved between sessions.";
fDesc[11] = "powerful mage lives there, and he entrusts it to the player's presumably capable hands. It provides everything a warrior could need: altars for summoning familiars and creating spells and enchanted items, and more.";
fDesc[12] = "place to be used as refuge; a garden where various poisonous plants grow; a cattle shed for vampires; a mine to get gold from and diverse upgrades for the house, which allow the utilization of new furniture, ornate and more.";
fDesc[13] = "create your own programs with your own sites or html files, send programs to friends or family, plus!";
fDesc[14] = "customisation of the viewing environment.";
fDesc[15] = "between 1900 and present day, choose from many different designs to produce the perfect gift for friends & family.";
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 = '...';
}
}