var fDesc=new Array();
fDesc[1] = "Entertainment. In 2001, this game became one of the most popular on-line games through, inter alia, free servers that Blizzard offers, forming the network Battle.net.";
fDesc[2] = "emergence of Shaddar and the demon of Shakkara. Of course, that you will be part of the eternal struggle between good and evil. You are going back to the Ancaria kingdom.";
fDesc[4] = "you to the sacred places of the Muslims. Probably you have heard of Mecca and the Kabbah, the place where you are supposed to go at least once in your life if you are a Muslim";
fDesc[5] = "Antara believe are sacred. Those spheres where once poisoned with black crystals by Magneus, an evil magician. Since then, the inhabitants of Antara lost their peace and wealth. Antara become a poor and afflicted land.";
fDesc[7] = "beautiful images with themes related to Allah, and at the same time listen to chants and prayers common for these people. Quran_2 Screen Saver will transport you to the Muslim world, and will share with you all their belief in Allah.";
fDesc[9] = "and sound. The scenarios become full of life and colour, the designers have paid much attention to the design of details, the shadows and light effects are very good.";
fDesc[10] = "sacred book. You will be able to enjoy watching beautiful scenes accompanied by texts both in Arabic and in English for your understanding. You will also be listening to real prayers and chants.";
fDesc[11] = ", Islam, Hinduism and Zoroastrism. It includes books such as the Bhagavad Gita, The Eightfold Path and the Q'uran, as well as a powerful Search feature and printing options.";
fDesc[12] = "geometry which is said to be present in light, music, and, well, life. The application allows you to somehow create those geometrical patterns by simply modifying certain values and creating oscillations.";
fDesc[13] = "contains six different English translations of the Bible, and more than 400 important works of religions such as Buddhism, Islam, Christianity, Judaism and Hinduism.";
fDesc[14] = "The free screensaver, Sacred Lotus, was created by RateMyScreensaver.com and contains 31 images of the lotus flower.";
fDesc[15] = "sacred scrolls. Game is fun and absolutely FREE!";
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 = '...';
}
}