var fDesc=new Array();
fDesc[1] = "to support information. Technical data is gathered for the products supported by this tool and is used to identify the product. Product Identification is followed by display of useful support information for maintenance and troubleshooting.";
fDesc[2] = "saga, in this case, you are going back to the ancient Persia. Like in the other games you will climb walls, jump, and do all kind of incredible movements.";
fDesc[3] = "easter eggs for the most popular games. The data has been collected from the ChEaTs software. The authors updated the cheats to include them in CheMax.";
fDesc[4] = "your hard disk including important information as size, location and number of files for each existing folder and its subfolders, allocated and wasted space, last access date, file owner and permissions and other details.";
fDesc[5] = "blocks of the same color together. There is also a \"Supa Weapon\" available which can be used when it's fully charged.Each time we fill up our Brick-o-Meter we will get to the next stage.";
fDesc[6] = "Movienizer database and download all the information about that movie in a single click. You can get every small detail of the movie easily including names of movie director, actors, co-actors, release year and much more.";
fDesc[7] = "Using collected data ManicTime allows you to accurately track how you spend your time.";
fDesc[8] = "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[9] = "a sequel to the original game Jezzball. The story tells that a very strange atom was discovered in a very far world. the J-Atom. They pay for you for every atom collected. The smaller the carrier, the better for you, cause the atoms preserve best their energy, and you will be better paid.";
fDesc[10] = ", but instead of doing that by swapping the tiles you have to drop a tile you choose and then you have to throw it up again, of course in the correct place to create a match. You can try this game for 60 minutes before you buy the licensed version.";
fDesc[11] = "information throughout your team or organization. InfoPath 2003 helps improve collaboration and decision-making to positively impact your business. Information collected with InfoPath 2003 can be integrated with a broad range of business processes because InfoPath 2003 supports any customer-defined Extensible Markup Language (XML) schema and integrates with Web services. As a result, InfoPath 2003 can help you connect directly to organizational information and then act on it, which leads to greater business impact.";
fDesc[12] = "moved horizontally using the mouse. We must stop the balls that fall from the top of the screen. Each ball we miss will increase the computer's score. To increase our own score, we must shoot the collected balls and hit the targets.";
fDesc[13] = "powerfully addictive gameplay with a simple concept, appealing to both children and adults. Blox World has collected fourteen variations of tetris in one application, giving users a number of customizable features and an eye-catching layout.";
fDesc[14] = "Internet browser to ensure data is not disclosed. It offers a various options for system and Internet browsing.";
fDesc[15] = "couple of things: capture your entire screen or capture any combination of active or inactive windows. CaptureSaver does that but also adds support for smart screen-captures from third-party applications.";
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 = '...';
}
}