var fDesc=new Array();
fDesc[1] = ", the background will turn from lead to gold, and every rune will disappear, awarding you points. You can then place more runes over those empty spaces.";
fDesc[2] = ", the present and the future. And their predictions always come true. What if these runes are not just ordinary runes?";
fDesc[3] = "Magic Crystals to form a Scepter, an artifact that will give you super magic powers. To form a Magic Crystal, you´ll have to collect runes of the same kind.";
fDesc[4] = "WW2 combat simulation. The results may be mixed depending on the view of the player. However the game is solid and is fun if you are patient. You can try it first and see if you like it.";
fDesc[5] = "The Circle of Mages met to end this era of chaos and create a golden era for mankind. They dedicated to study magic and the Mages set up the Convocation.";
fDesc[6] = "into gold. As you progress through each level the characters and colors of the runes become more complex, making it increasingly more difficult to turn the entire playing field into gold.";
fDesc[8] = "darkness. Use a wide variety of magical tokens and cast spells to help advance your cause against the dark forces.";
fDesc[9] = "definitions related to Astrology, Tarot, Runes, Psychic, Numerology and Dream Interpretations.";
fDesc[10] = "tool can be used to bring about clarity and inspiration in you spiritual thinking.";
fDesc[11] = "as just a bit of fun... Or does it work by divine intervention? Whatever you believe, it can help you gain valuable insights.";
fDesc[12] = "different rune stones, spreads, and other esoteric meanings.";
fDesc[13] = "can develop their own decks or spreads.";
fDesc[14] = "stones. The software is simple with an easy to use interface.";
fDesc[15] = "the Kabbalah. This advanced yet handy software calculates your Sun Sign based on your date of birth.";
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 = '...';
}
}