var fDesc=new Array();
fDesc[1] = "in terms of graphics. It enabled users to see a thumbnail of the Windows by simply placing the pointer on top of the Window's button on the taskbar. This is more than a graphical tweak though.";
fDesc[2] = "pack more punch. Which makes you look even smarter, too. - Record whatever you want, right now, at any size. Decide how to use it later. - Edit and Enhance to clarify and amplify your message. - Share your creation anywhere, in multiple formats.";
fDesc[3] = "overview that helps you keep track of your expenses. Put savings targets and then perform a monthly analysis of your finances to see how much you're really saving.";
fDesc[4] = "new restaurants. Unlimited, unrestricted gameplay, 50 new story mode levels, 6 new customers, take customer reservations, train new waiters for each restaurant.";
fDesc[5] = "and will captivate you while you are playing. The game consists in a bunch of words mixed up on the screen that you will have to find to get points.";
fDesc[6] = "and scan your directories and files in search for problems that could render your Lightscribe software non-functional. The application doesn't actually do anything to solve problems, but it directs you in the right direction.";
fDesc[7] = ", and collect tips. You must help the restaurant owners to collect the money needed to pay their rents to Mr. Big, who wants them to fail because he wants his big restaurant to be the only one in the city.";
fDesc[8] = "items and some hints in case you get stuck. What makes this game different from others of the kind, is that in this one you are not only supposed to be finding items and picking them up from a scene, but you also have to put them in their correct spots in other scenes.";
fDesc[9] = "approach. Taking a lot from Firefox and the like, XYplorer adds a tabbed interface to the everyday use of file managers. Thus, you don't have to scroll through tens of windows to find the one that you know is somewhere.";
fDesc[10] = ", let’s you know that the game is related to the food business. Actually, you’re gonna be representing SpongeBob who will be playing the role of a waiter, doing his best at serving customers in his dinner.";
fDesc[11] = "and plant them in three different pots situated in a virtual grow room. Then, you´ll have to take care of that seeds, watering them. They will germinate and begin their life cycle, determined by their genetic structure.";
fDesc[12] = "matches on a board). You prepare the customers orders by collecting the required ingredients from a board. Every time you make a match, the ingredients involved are collected to prepare the order.";
fDesc[13] = ", and good functionality. The application is helpful in editing and debugging source code. Its key features include error indicators, syntax styling, code completion, and call tips.";
fDesc[14] = "information about how to tweak some features (Desktop, Registry, Security, Hardware, Easter Eggs, Keyboard Shortcuts) in Windows 95, 98, NT4, Server 2000/2003/2008 and XP. It also contains tips for Internet Browsers (Internet Explorer, Mozilla Firefox, Netscape and Opera).";
fDesc[15] = "your own pace following the comprehensive videos and animated guitar and access friendly help and tips every step of the way. Whether you are a complete beginner or have played before this program will teach you chords, tunes and strumming, hand positions, technique, and music reading.";
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 = '...';
}
}