var fDesc=new Array();
fDesc[1] = "your hamster fall down in a wrong way, or you can break his ball and loose time. Reach the goal before the time is up and enjoy each new level of this game.";
fDesc[2] = "users to share their processing power with the SETI@HOME initiative. It used volunteers' computers to analyze recordings of radio transmissions from outer space. However, nowadays, several projects can be added to the client.";
fDesc[3] = "to creativity and work better and faster. The program SolidWorks reduces the overall costs in terms of CAD, because it is easy to deploy, use and maintain, giving the engineer more time to devote to design better products.";
fDesc[4] = "this program to help them with projects ranging from simple calculator operations to high-level software development. Mathematica for Students can help students to complete their homework and to perform symbolic as well as numeric computations";
fDesc[5] = "immerses the player in a fierce war between an intergalactic space colony called Halo and some stellar alien invaders known as the Covenants.";
fDesc[6] = "projects around the world. Boinc software uses the time when your are not using PC at all, and then it processes scientific information from the project you already chose. With this, you help to scientific investigations in areas like, physics, chemistry, biology, etc.";
fDesc[7] = "advanced mode. It is considered to be the most award winning collection of data and analysis software. Data studio allows the users to watch the science unfold in front of them in real time with data collection, graphing, and analysis.";
fDesc[9] = ", kids will explore fascinating science topics like astronomy, mechanics, ecology, genetics, and more! Available for Windows and Mac OS based systems and designed for kids of ages 8 and up.";
fDesc[11] = "sign from your date of birth. This program gives you a detailed interpretation of the Tibetan Sun Sign and the Tibetan Animal Sign. Moreover, it helps you understand your personality and improve yourself for the better. In Tibet, astrology is considered to be one of the five traditional sciences. Tibetan Astrology originated around 1000 years ago and it has its roots in several other traditions: Indian, Chinese, Buddhism and even the local Bon religion. This form of astrology can broadly be divided into two parts: the ‘Naktsi’ and the ‘Kartsi’ astrology. The ‘Naktsi’ astrology has its origin in Chinese astrology; whereas the ‘Kartsi’ astrology has its origin in Indian or Western astrology.";
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 = '...';
}
}