var fDesc=new Array();
fDesc[1] = "is simple yet powerful: it analyzes your Windows Registry and configuration/startup files, showing you a list of \"suspicious\" results. But applying the fixes is up to you...read each item carefully before fixing anything!";
fDesc[2] = "Eos Utility CD package after purchasing a Canon Digital Camera. This piece of software has been designed to allow us to create units with both image and audio and save them as a single item. We can access this program via Start, Canon Utilities, Camera Window, MyCamera.";
fDesc[3] = "case comes up and you are ready to get to the end of it. Your mission is to investigate who is the killer of Miss Linnete Doyle, another passenger of the cruiser. Twelve levels will lead you to the truth, gathering clues on each investigation.";
fDesc[4] = "those games, you have to keep the ball bouncing into three walls, destroying thing as it touchs it, and getting points for it. From time to time, a destroyed item will free a bonus item, that will give you some advantage if you catch it.";
fDesc[5] = ", the owner of the house in which you’re staying at. Thirteen levels will lead you to the truth, gather clues on each investigation. Try this game for 60 minutes.";
fDesc[6] = "all the text that you copy from that moment. At any time, you can paste the last clip loaded on the clipboard by simply hitting Ctrl + V, but Clipdiary allows you to browse through everything you have copied, and paste any item anywhere.";
fDesc[7] = "is placed on the clipboard, thus allowing you to access to any of them later. The information you can save is any type of information that can be put on the clipboard, like text, images, or HTML.";
fDesc[8] = "have written on a list in order to unlock new stages, get as much clues as you can so you can solve the mystery. This game will really challenge your observation skills.";
fDesc[9] = "feeds without subscribing to them first, simply inputting their URL. You will have the list of subscribed feeds on the left, item-headlines at the top-right, and item-contents at the bottom right.";
fDesc[10] = "pictures, rich text, and URLs. This allows you to paste the items saved into any application. The program works in two modes: History mode has a limit of 200 saved items by category, when the 201th item is stored, the oldest item will be removed. Boilerplate mode is a permanent storage area.";
fDesc[11] = ", each item is needed for your investigation of the kidnapped dog case. You have to look the scenes very carefully, trying to find the hidden items on the list. When you see a item, just click on it to update the list.";
fDesc[12] = "compliant with the standard W3C specifications. Interface is pretty nice and easy to understand. You just need a few minutes to make a nice menu, either horizontal, vertical and drop-down (combo-box) menus.";
fDesc[13] = "challenge. This game is very well designed to entertain and capture your attention solving tasks and mysteries. This game brings you different challenges. In each episode you will find new and different tasks.";
fDesc[14] = "applications which run during the windows startup process. It will display you all the programs which reside in the various windows startup locations.";
fDesc[15] = "belongings during any contingency, it would be more convenient if you have a handy inventory of all your personal objects. With the help of this application you can easily enter all the details of your belongings and keep track of each and every item.";
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 = '...';
}
}