var fDesc=new Array();
fDesc[1] = "Commander takes as its starting point the best of Total Annihilation. Many people dare to proclaim this game as the spiritual successor to Total Annihilation.";
fDesc[2] = "who has lost her crew and her love during an attack of a ghost ship called Flying Dutchman. She knows that her crew is alive, so she is going to rescue them, including her love, of course.";
fDesc[6] = "atmosphere of this unique setting and enjoy the glorious view of a beautiful oriental pagoda and a redwood gazebo lost among blooming cherry trees.";
fDesc[7] = ", spiritual, water and science. At the beginning most of the pictures are blocked and as the players progress in the game, more pictures are revealed, which is also more challenging and interesting.";
fDesc[8] = "products. They have developed softwares like calendar for windows, bible study software and many more to equip and edify Christians. This time they have created a wonderful and interesting quiz program to guide a person with different statements of Christianity,";
fDesc[9] = "and have remained popular ever since. They are seen as a means of getting in touch with the spiritual world.";
fDesc[10] = "metaphysical areas like Numerology, Healing, Meditation, Chakra, OBE, Charging Water and Crystals, and Plant Growth, for example. The program allows you to study and create tones and tone frequencies that can assist in clearing thoughts.";
fDesc[11] = "born, but do not know it. MB Free Psychic Test Software is a very unusual program designed to help you test those psychic abilities that you might have. This program will strengthen your intuitive powers and will also make you more aware of and sensitive to the spiritual world.";
fDesc[12] = "tool can be used to bring about clarity and inspiration in you spiritual thinking.";
fDesc[13] = "modern biorythms: intuitial, aesthetic, spiritual; - comments for today; - possibility to show and compare a lot of biorythms together;";
fDesc[14] = "different planets in different signs on the various aspects of our personality.";
fDesc[15] = "Need an inspirational thought that won't take up your whole screen? This program places a Bible in the System Tray area...";
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 = '...';
}
}