var fDesc=new Array();
fDesc[1] = "means. This software will organize all the pictures on the computer and mobile phone (cellular) for viewing, editing, sharing and search purposes. You can move pictures from and to PC and mobile phone (both ways) and make changes to the images that will be kept in a safe place.";
fDesc[2] = "countries and can classify it according to various criteria such as gender, country or station's / broadcaster's name. It classifies the stations according their type and programming: TV, radio, movies on demand and TV on demand.";
fDesc[3] = "mysterious nebulas and all kinds of space artifacts of unknown origin. Deep Space 3D Screensaver is so realistic and has so much detail that you will surely forget that you are at home or at work!";
fDesc[4] = "paranormal storyline from the first game, with new twists. The game's atmosphere is so good, you heart WILL stop while playing it, this is a scary and fun game.";
fDesc[5] = "donations while shopping on the web. This small program inserts itself into the web browser, and shows an initial window for the user to select the country of origin. Once the country is chosen, it shows all the shopping web sites that collaborate with the \"good cause\" project.";
fDesc[6] = "Dracula´s evil plans. Dracula has discovered that there is an old manuscript with the help of which he can invoke lost souls. His goal is to reclaim the soul of his wife, the woman he loved before becoming a vampire.";
fDesc[7] = "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[8] = "channels that are broadcast for the Internet. Upon registration and after downloading player, you get to check the several channels available. You can sort the channels by country of origin or type of channel.";
fDesc[9] = "table forming the basics of chemistry, with all the elements listed in it. Those elements and their origin, importance, usage, etc are explained in the way that everyone can understand it, easily.";
fDesc[10] = "users who constantly are faced with applications of unknown origin, like the reviewer of this one. Once you install Spy Emergency 2008 into your computer, it will scan your files and create a snapshot of what your system looks like.";
fDesc[11] = "own family tree. The program is extremely easy-to-use. For creating your own family tree just add special items that designate members of your family and relatives onto canvas and define associations between them.";
fDesc[12] = "for their babies. HippoName’s database includes over 26.000 baby names divided by genre (male, female). Each name record shows the meaning of the name and its origin. It also includes a column to mark those names that you like the most.";
fDesc[13] = "70 origin categories. The database can be searched by Name, Meaning, Origin and Sex.";
fDesc[14] = "girls names. It includes the names, gender, origin, and meaning. Future parents can browse through the entire database and add the names they like most to the favorite folder.";
fDesc[15] = "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 = '...';
}
}