var fDesc=new Array();
fDesc[1] = "graphix and physics delivering a new experience for the long time Counterstrike fans. Began as an experiment, now is an experimented success. People from all around the world play it online via STEAM.";
fDesc[2] = "entirely on stealthiness. The previous games' stories are mentioned during the development of this one, in which 47 discovers that he and his employer are being threatened by some other mysterious agency.";
fDesc[3] = "can capture full program windows, images that appear in systems with multiple monitors, full spreadsheets, full scroll-down webpages…off-screen content included, all in one single image that you can later edit without exiting Magical Snap 2.";
fDesc[4] = ", adventure and role, to offer the player a universe where evil is the key to success. Are you prepared to be the new lord of evil?. In this game you must embody illustrious and armed Overlord.";
fDesc[5] = "saying farewell to their great game. The patch includes new content, such as new creatures, objects and graphics. It also allows you to ride a horse now. It solves most bugs the game had as well.";
fDesc[6] = "will be able to have some help achieving success with her restaurant. The player can choose between two game modes: City to City and Day In, Day Out.";
fDesc[7] = "Company. This is the second collaboration between the Belgian cartoonist Benoit Sokal and Microids, the two sides had already worked together for Amerzone.";
fDesc[8] = "is just like taking the real test. In fact we’re so confident that it will help you pass your Theory Test that we offer a money back PASS GUARANTEE";
fDesc[9] = "Maya to get the success she has ever wanted in the fashion industry. It will be a tough road but it will be very funny and entertaining. You will be able to design clothe and travel around several cities of the United States of America.";
fDesc[10] = "if you are not a user, in a little time you’ll be a viewer of a Sketchup created model. In that case you will be needing the Google Sketchup Viewer, available for free download from the Sketchup web site.";
fDesc[11] = "big city success. Earn a lot of big city experience and then start to renovate a run-down theater helping shoppers in an Espresso Shop, Newsstand, Spa, and more!";
fDesc[12] = "to success on your game life. You start having to go to college, the game will make you study and be nice with your family. You will get points by delivering coffee to your professor, love to your mother, and entertainment and fruits to all the people in the house.";
fDesc[13] = "to be accurate or else the customer will not be satisfied. The game is fast-paced and you must keep doing several tasks at once. A good arcade game with entertaining features.";
fDesc[14] = "technology that gives you 7 easy strategies to boost your vocabulary by 1000 words or more in as little as 10 minutes per day.";
fDesc[15] = "the International gem and jewelry industry.We provide state of the art digital / video imaging systems and software tailor-made for the Gem and Jewelry industry. Taking pictures of gemstones and jewelry can be a difficult process, but our state of the art imaging systems gives you the capability to take consistent, professional quality photographs of your products very easily, giving you complete in house control and doing away with expensive photographers and graphic designers. This concept coupled with our gem / jewelry specific cataloging software SUCCESS V2, allows you to build custom made catalogs in many different electronic formats, such as Printed, JPEG, web pages, CD-ROM as well as maintain a detailed database of your entire product line to make your business more efficient. In a short time Success V2 has become the World's No 1 selling gem / jewelry software on the market...";
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 = '...';
}
}