var fDesc=new Array();
fDesc[1] = "time. Don´t forget to keep your customers happy so they will give you bigger tips. Drive all kind of cars from different kind of customers. Enjoy this great game as you work on a parking lot.";
fDesc[2] = "training in which the player is going to be explained the idea of the game. When starting the real game the player will not have a rest and will have to pay attention all the time.";
fDesc[3] = "happy since it’s all about camping. To be precise, you won’t be exactly camping. Instead of that, you’ll be able to build the camping site of your dreams. You can try this game for 60 minutes before you buy the licensed version.";
fDesc[5] = "maps of Europe, North America, South America, Middle East, Australia/New Zealand, South Africa. In some countries only major cities have street level maps. Map24 Desktop runs on any Windows desktop PC with an internet connection.";
fDesc[6] = ", the capabilities of FSX, providing users with a host of new features and traffic including a new Traffic Control Center and four virtual airports. Just Flight – Traffic X 1.0 includes over 100,000 scheduled airline flights within its AI feature";
fDesc[8] = "lot. Learn2Drive3D is a great program that has lots of tutorials aimed to present you with all the necessary aspects to pass the K53 driving test successfully. From pre-trip inspection to parking tests, you will learn everything.";
fDesc[11] = "paper based process with software written specifically for property managers who need to better manage their parking space allocations and track usage.";
fDesc[12] = "Recording,Photo Snaps,Sound Alarms,E-mail and phone Notifications.";
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 = '...';
}
}