var fDesc=new Array();
fDesc[1] = "of the game is to create matches of three in a row, by clicking on adjacent tiles to swap them. As you progress on the game, you’ll be releasing fishes. You can try this game for 60 minutes.";
fDesc[2] = "Vista. With this program you will be able to change the boring and plain Windows default cursors and create a more appealing and funny desktop";
fDesc[3] = "completely naked, and if you want to have new girls you just have to download from the same program. And you can do it on daily basis! This program is completely free for you to enjoy adults' only entertainment. You will only have to pay to see full nudity.";
fDesc[4] = "on a colored background with a soft curved design. In this case, we are talking about an aqua blue background with different shades forming hill-like shapes.";
fDesc[5] = "you on a diving trip to the colorful coral reef where you will be able to see different kinds of corals, sponges and more. You can watch the rays of the sun filtering through the water, making you feel like you were really underwater.";
fDesc[6] = "fancy stuff or complicated animations. The wallpaper consists of the VAIO logo on a colored background with a soft curved design. In this case, we are talking about a lilac background with white delictae flowers.";
fDesc[7] = "colored background with a soft curved design. In this case, we are talking about a light blue background with white flowers. The different colors are just beautiful and they are out of the ordinary, very bright and neon-like.";
fDesc[8] = "can brighten up your face, make it small or large, etc. It can whiten teeth and eyes, remove the spots on the faces, and even remove the wrinkles. The output image quality is really great.";
fDesc[9] = "transforms it in a window to the universe. We can use it as Wallpaper or as a Screen Saver, if you use anyone of both you can choose to refresh the view every certain amount of minutes, in the map area can download more maps and apply the zoom.";
fDesc[10] = "capability to remove the tiny spots and marks on your face. It can select your skin tone and use it to clear up the small spots or color differences in your skin.";
fDesc[11] = "through this beautiful world full of risky turns and joyful surprises.";
fDesc[12] = "tower that will display the actual time. The clocks on the tower show you he correct time and can be set to strike every 15, 30, 45, or 60 minutes, or you can turn the sound off completely.";
fDesc[13] = "screen saver will allow you to relax and feel as if you were taking some well-deserved vacations, or maybe living there, in a very cozy cottage next to a lake, with a view of a bridge with the water gently flowing under it.";
fDesc[14] = "sand shores. Download this screensaver including more than 20 colorful fullscreen images absolutely free!";
fDesc[15] = "botanical garden on a beautiful Spring day. Admire thousands of blooming tulips and daffodils while hundreds flocking butterflies dance across the screen.";
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 = '...';
}
}