var fDesc=new Array();
fDesc[1] = "together. When there are no valid plays, flip a card from the stock and try again. Jewels are dropped onto the board based on how you play the cards. The jewels dropped will match the suits of the cards that are played.";
fDesc[2] = "marks representing hidden dig sites. You have to complete your treasure collections to unlock them. In this game you’ll be exploring ancient ruins, discovering fabulous treasures and winning piles of coins.";
fDesc[3] = "the action: you are not going to fight the terrible Stroggs all by yourself, since you will have the support of elite squads made up of special marines who carry with them state-of-the-art technology, and with whom you will be able to interact.";
fDesc[4] = "with their friends. You can also have your seems wearing the latest teen fashions including track suits, designer jeans, and yoga outfits. In addition, The Sims 2 Teen Style Stuff is the first stuff pack to feature a The Sims contest winner!";
fDesc[5] = "One Klondike Pyramid, FreeCell, Spider solitaire, Flower Garden, Diplomat , Spider solitaire Two Suits, Eighteens, Forty Thieves, Grandfather's Clock, Royal Rendezvous, Spider, Suit, and others.";
fDesc[6] = "Hockey is one of their strong suits. I am not big fan of ice hockey, but I can appreciate the fundamentals behind it. From what I could gather by playing the demo of this game, the visuals are stunning.";
fDesc[7] = "solitaire card game you have in Windows Operating System Cards are arranged in seven coulmns. The game object is to collect and stack all the cards in the order of alternating red and black colours, from the ace to the king.";
fDesc[8] = "quick batch photo resizing mode. High Quality Photo Resizer best suits for minimizing the photo size to publish pictures on the internet or for sharing them with others.";
fDesc[9] = "The dictionary contains over 250,000 words, including historical figures, slang and jargon. The program suits perfectly for visually impaired or blind computer users.";
fDesc[10] = "pictures. All gamers will surely find a puzzle that suits their level of expertise. With Super Collapse Puzzle Gallery 4, your entertaiment is guaranteed!";
fDesc[11] = "allows you to play twelve poker hands at once. 5-Card Slingo offers three different game modes, to choose the one that suits your level and rhythm. Moreover, 5-Card Slingo offers an attractive graphics and cool sound effects.";
fDesc[12] = "the Golden Age of Cinema. On your journey, you will visit over two dozen exotic locations around the world and record your travels in your Journal. You can try this game for 60 minutes before you buy the licensed version.";
fDesc[13] = ", but it’s different from others games alike since it has twelve-in-one solitaire games which is great in order not to get bored any soon. All twelve solitaire games offer a thorough explanation of how to play in the beginning.";
fDesc[14] = "The software is capable of scanning a computer for digital images and videos within minutes and afterwards they will be organizing in a way that suits the user.";
fDesc[15] = "the form of cookies, cached files, temporary files and others. If we don’t want another person to get access to this information we should have a reliable tool for erasing such type of data. Web Tracks Eraser is a small utility that perfectly suits for becoming such a tool.";
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 = '...';
}
}