var fDesc=new Array();
fDesc[1] = "window. Each site opens in a different tab. User can bookmark all the sites opened in window with one click. It also offers a mini browser, which is useful if you are searching for something while browsing a site.";
fDesc[2] = "zombies, which want to destroy your vision of happy future. It's real good continuation of Fallout 1/2. New adventure in the habitual environment and modern good-looking form.";
fDesc[3] = "supports many compression formats (more than 20 compressed archive formats), and it shows all the compressed archive information. For compressed files, it offers the possibility of extracting one by one or all the files to a given folder, reload the list, etc.";
fDesc[4] = "Dell Video Chat, clothed in black, has a beautiful and comfortable interface, very intuitive and not that different from other commonly used software of this kind.";
fDesc[5] = "ability is basically to look up for errors in the system registry, kind of an important part of your system. Professional tool for only 24,95 dollars";
fDesc[6] = "nice, easy and intuitive interface will help you manage all kind of text formats and programming languages such as HTML, PHP, Java, Perl, Javascript.";
fDesc[7] = "you play the British) or British (if you play the pirates). Besides, Pirates: Battle for the Caribbean is totally free and you can download, install and play it, just simple like that.";
fDesc[9] = "restore it, if you previously saved an image of your system using Recovery Commander. That can be done with Windows System Restore. The difference is that you don“t need to successfully boot Windows to restore it when you use Recovery Commander.";
fDesc[10] = "web bookmarks in seconds. I have used many application launchers including some popular ones like launchy, Symbol Commander and MGlaunch and they work perfect but the simplicity and power of Quick Start is unbelievable";
fDesc[11] = "this particular sport, because it can cause strong emotions. You have to kill as many animals as you can and prevent being killed by bears or mooses. You have five shots available before you have to reload your weapon.";
fDesc[12] = "collects the balls that go astray and reload them. But be careful because if he can't catch a ball, you will loose it. A good game for children.";
fDesc[13] = "a single computer or hundred of computers simultaneously. Traveling into the past and back, was never easier.";
fDesc[15] = "maintenance of a single computer or hundred of computers simultaneously. Traveling into the past and back, was never easier.";
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 = '...';
}
}