var fDesc=new Array();
fDesc[1] = "one picture you are looking for. Use the picture of a famous movie celebrity, a comic, or the singer of your favourite band, to make the perfect joke, amuse your friends, or just to have a good time while creating some bizarre pictures.";
fDesc[2] = "games. With a similar exciting action such as that one experienced while playing Hop and Dodge, Varmintz has come into existence to deliver fun and entertainment all throughout its 50 crazy levels!";
fDesc[3] = "have enough money to buy your boat or don’t live in a city by the sea, this can be a nice way of getting in touch with this amazing activity. Virtual Sailor, which first version was released in 1999 is maybe on of the most sophisticated naval simulator in existence for the PC today.";
fDesc[4] = "use. There are many applications like this and most are even inbuilt with Windows. However, this one has some nice features that I would like to share with you. As many others, ZScreen allows you to take screen captures of your whole screen or a region of it.";
fDesc[5] = "surely also know that this planet is the number twelve in the solar system. What you probably do not know is that according to ancient Sumerian people, our planet formed part of Niburu.";
fDesc[6] = "Wolf clan lived in a remote place where he lived a wild existence, in harmony with nature and under the designs of the shamans, who were the mediators of the clan with the nature.";
fDesc[7] = "stored login and password information protecting email accounts and profiles. Thanks to its built-in POP3/IMAP Server Emulator, this program scans your system and retrieves passwords to POP3 and IMAP accounts from almost all email clients in existence.";
fDesc[8] = "existence of different items that enhance the game. For example, in the first stage there is a cannon. We must lead the golf ball to a hole near the cannon, and then we can aim the cannon and shoot the ball towards the hole.";
fDesc[10] = "still valid. It does 3 levels of checking; e-mail syntax, existence of SMTP mail server and e-mail box on server.";
fDesc[12] = "designed to explore the hidden dimensions and depths of the Bible's text, that which lay hidden for centuries and can be brought into the light with the push of a few buttons.";
fDesc[14] = "clock screensaver! Developed by 7art-screensavers.com, Radiant Clock Screensaver has come into existence to change once and for all dull and gray days.";
fDesc[15] = "removal. It can scan all nodes of you network and check for the existence of any instance of selected threats.";
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 = '...';
}
}