var fDesc=new Array();
fDesc[1] = "Transform your two monitors into one big desktop and tidy all your staff. It’s very easy to use and yet a very complete and tool to help you save money and complex tasks.";
fDesc[2] = "compression and encryption algorithm that saves more information in less space, and Google desktop integration.";
fDesc[3] = ", 2003, 2002, or 2000. You may copy text or graphic into another program, but you will only be able to open the document for editing if you have Microsoft Word installed.";
fDesc[4] = "downloaded maps of over 200 countries on your PC to a mobile device with Nokia Maps previously installed. You can use the Nokia Maps application on your device any place at any time.";
fDesc[5] = "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[6] = "searching for cargo to haul driving a fantastic truck. Your goal is to carry put deliveries, for which you are paid, and get as much money as possible to change your vehicle and buy a more comfortable and fast one to complete the rest of the tasks.";
fDesc[7] = "more than 40 U.S.cities from coast to coast, Canada and Mexico. Your goal is to build a fleet, deliver the goods to make money, and finally defeat the competition.";
fDesc[8] = "and you must haul cargo across the entire United States. Your goal is to make money, dominate the roads and eliminate the competition.";
fDesc[9] = "clean a mess, first find it and then click on it with the mouse pointer. The second activity is to put the kids in bed before the parents come back home. To put a kid in bed click on it and then click on the bed.";
fDesc[10] = "messages and so on.";
fDesc[11] = "creating your own virtual page flipping e-Books. This program could be useful for authors or publishers. You can make use of this free trial period which gives you access to the full end-user product, as well as a severe security system which protects your work.";
fDesc[12] = "you have to run your loads from coast to coast. Your goal is to build a fleet, deliver the goods to make money, dominate the roads and eliminate the competition.";
fDesc[13] = "addresses to the point of delivery. This application will avoid having to cleanup mass mailing lists saving time on verification, validation and elimination.";
fDesc[14] = "expenditures, the program will allow you to keep track of your budget. You will then be able to better understand where did your money go, and plan where to save money.";
fDesc[15] = "reducing global warming. It even keeps track of how much you, and all users are saving--already hundreds of tons of CO2.";
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 = '...';
}
}