var fDesc=new Array();
fDesc[1] = "Microsoft WLP 3.08 Vista premium and mobile PCs, it is heavily used and popular amongst Vista and Mobile PC users.";
fDesc[2] = ", therefore Infinity Ward released patch 1.6. The patch includes 4 new and excellent multi-player maps, along with new features for filtering and several bug fixes.";
fDesc[3] = "the most of these icons no longer match the style of the current Windows operating systems. This LITE version in not compatible with large icons (128 x 128 pixels)";
fDesc[4] = "skins. You can change the look of your Windows to Mac, Vista or your favorite game or a sport theme like cars, or cartoons and much more. WindowBlinds offers 8 themes that come along with the program.";
fDesc[5] = "of all ages. This tool has a real time European City feel along with various views for the driver to ensure the 360-degree real experience with all those big trucks.";
fDesc[6] = "submerging to the coral reef below. With each meter that slips by, it becomes quieter and more peaceful around you. The mysterious kingdom of the sea uncovers all its beauty, only to you. Nothing troubles you now. Soft light filters through the water, tinting it with the various shades of blue and green. Fantastic corals are wondrously shaped and colored. It's almost like you are on another planet. Algae are gently swaying with the current. Peaceful, easy feelings fill your body. Air bubbles slowly rise to the water surface. Tropical fish inhabit the coral reef. They appear in every imaginable color, with fantastic shapes. They are swimming everywhere. Some are far from you, others very close. Fish movements are so realistic that it makes you think you are observing real living sea creatures. They swim and drift. Corals and plants bend and sway in the tide, all realistically reflecting...";
fDesc[7] = "image editor adapted to look and feel more like Adobe´s application. Besides been free, GIMPShop adapts its terminology and menu structure to look and feel more like Adobe´s application.";
fDesc[8] = "watching a magnificent fireplace so realistic that we are sure your mind will go to strange and mysterious places. The flames of the logs dance all around like mystical spirits. The whole room is lightened and filled with romantic feelings.";
fDesc[9] = "to discover hidden treasures, or simply to enjoy the views and feelings of the underwater environment. Delight yourself as you watch beautiful tropical fishes swimming around you. They are so realistic and so close to you, that you will feel the urge to reach out and touch them.";
fDesc[10] = "you will start relaxing with the soft light provided by lanterns hanging from the branches of the trees. Add some wierd sounds and noises to the scene, and you will be imagining your childhood fears.";
fDesc[11] = "adventure in 2D, a remake of a popular classic game. Does it feel good to go back to arcade's roots. The environment, with a look, feel, and play that feels unbelievably classic, with new elements that do a fantastic job.";
fDesc[12] = "very realistic graphics that will provide all the different details to make Christmas a time to remember. The images are so realistic that you will be able to even feel the warmth of the flames as they rise in the air.";
fDesc[13] = "loved one. This beautifully crafted screensaver will show you a couple of red heart-shaped balloons. The balloons look shiny and you can decorate them with your names, using handwritten text.";
fDesc[14] = "of those gigantic vehicles as they travel across the country. Watch several different 18-wheelers ride along many different scenarios and roads. Feel the power of their engines as they glide past you, both during the day and at night.";
fDesc[15] = "swirls on the surface, accompanied by a sunset sky and lightning in the horizon. The graphics are very realistic. You can almost feel the wind on your face. All the atmospheric effects are so well designed that you will really feel in the middle of the storm.";
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 = '...';
}
}