var fDesc=new Array();
fDesc[1] = "furnish a flat and calculate the it's cost with the latest IKEA prices. You can share the plan of your dream bedroom by saving the project to the disk and send it by email to your friend.";
fDesc[2] = "game you play a New York-based wedding planner who must help the two different couples prepare everything for their big day.";
fDesc[3] = "four wedding planners in a TV-show, organizing luxurious weddings worldwide. The first wedding to plan is at Niagara, so you’ll be flying within the next three hours! Try this game for 60 minutes before you buy the licensed version.";
fDesc[4] = "software will help you to plan individually and design according to your real kitchen size all your ALNO new furniture. You can have the traditional design, stylishly combined with modern kitchen technology – ALNO Country.";
fDesc[5] = "included layouts, of which there are more than 170. The program lets you create your own designs for any purpose. You can also create your own unique letterheads, forms or backgrounds for your planners or booklets.";
fDesc[6] = "routine. The program sits silently in your system tray and you can open and close it just by clicking on its icon. It features a nice and intuitive user interface, with a small calendar at the upper part and a note organizer below it.";
fDesc[7] = "work with a lot of clients with various tasks individually. The interface is designed to see all the information in one view and to interact with it with only a few clicks, accessing to all of the tasks and information in time, navigating through it in an easy way.";
fDesc[8] = "who just dreams about their own garden. This program is very easy and doesn’t require any special computer knowledge. But at the same time, it is very creative software that helps you make a full-featured plan of your plot.";
fDesc[9] = "versions. It is very powerful and functional software. This program allows to make realistic flight tasks, to find necessary beacons for navigation and much more, and then you can import this plans directly into Flight Simulator.";
fDesc[10] = "to remind you of upcoming events, meetings, birthdays, aniversaries, etc.";
fDesc[11] = "views ( Gantt, Network, Resource, Estimation, Risk, Plan..) to get the broad understanding of where your project is heading.";
fDesc[12] = "it may be difficult for novices. Using this program you can make calculations for all mixtures (air, nitrox, trimix, heliox), and also for opened and closed circuit rebreather. In addition it allows to use a wide range of individual settings.";
fDesc[13] = "your system tray and allows you to control the whole program from there. Apart from the calendar, you can create simple to-do lists divided in categories: personal, work and other.";
fDesc[14] = ", appointments and different events. The program features a nice and intuitive user interface, which allows you to create calendars in a snap.";
fDesc[15] = "maximize nutritional quality and eliminate waste. The program offers you create Pantry, Recipe Book, and Menu plan. It will calculate your needs for any period you want. You will be able to get a shopping list with items list, cost and quantity of products you need.";
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 = '...';
}
}