var fDesc=new Array();
fDesc[1] = "world. This game offers player a very exclusive variety of tournament which are very popular all over the world. You can play with or against the best poker players and thus show your poker skills.";
fDesc[2] = "works without starting the Keeper and lets the user to trace the arrival of new payments and messages. This useful utility checks if there is a new transfer, bill or a message.";
fDesc[3] = "Mystery P.I., you've been hired by Grandma Rose to find her winning $488 Million lottery ticket. For achieving that, you´ll need to retrace Grandma's footsteps to collect clues by finding over 2200 hidden objects and solving puzzles.";
fDesc[4] = "beautiful places where you can enjoy watching the leaves falling, this amazing 3D screen saver can give you the opportunity to sit and relax watching an incredible and realistic animation of your dreaming place.";
fDesc[5] = "has been designed to teach mathematics to children ages 4 to 6. The program includes over 20 maths concepts and skills, 15 activities and games, several challenging levels, rewards to motivate the children, etc.";
fDesc[6] = "schools, choirs, orchestra, amateur theaters and so on to help to organize small- and medium-sized events. This program can be a good alternative to complex graphics programs. It is easy to use and offers many functions.";
fDesc[7] = "computer, Solitaire For Dummies is your ticket to the perfect stack of cards. Master each game to build up your meter to obtain a new bronze, silver, or gold star!";
fDesc[8] = "that requires text, graphics, or serial numbering. Create and print your project from your desktop in minutes with our easy to use interface.";
fDesc[9] = "necessary. Use plain paper and cut tickets apart yourself or use our pre-perforated paper for a professional appearance.";
fDesc[10] = "Editor. Mathematical Systems Reducer. Calculations & My Tickets. Statistics sheet and graph charts. My Tickets Generator.";
fDesc[11] = ", graphics, or serial numbering. Create and print your project from your desktop in minutes with our easy to use interface.";
fDesc[12] = "imported data, serial numbering, text, or graphics. Barcode static and imported data. Works with most desktop, label, ticket and commercial";
fDesc[13] = "landlord with many checks to deposit every month, this software will help you save time generating deposit slips.";
fDesc[14] = "(\"trouble ticket software\" or \"issue tracking software\"). Easy to install, accessible from anywhere via Web.";
fDesc[15] = "means of reserving seats and selling tickets. The program includes a customer database, report generation, and inventory control.";
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 = '...';
}
}