var fDesc=new Array();
fDesc[1] = "eliminate you and your base, and your objective is to defend the base and to survive yourself.";
fDesc[2] = "Transport Tycoon Deluxe or OpenTTD places you as a transport company owner and the target of the game is to be the most successful transportation company. OpenTTD works on Mac OS X, Linux, UNIX, BeOS, OS/2, and Windows platforms.";
fDesc[3] = "good for libraries where a record has to be maintained for books borrowed. In this system, all the books along with their details can be entered in many formats. The print mode is super condensed; for that reason a magnifying glass is required.";
fDesc[4] = "platforms. GCStar allows you to manage your collections of books, movies, series episodes, and many others. The input of data is carried out very easily. You can add movies by simply typing their names.";
fDesc[5] = ", and search for any particular title at any time with ease. The number of available functions depends of the installed edition, but basically in any edition you can manage, lend, and borrow books, or read and print eBooks.";
fDesc[6] = ", savings, credit cards, loans, debt accounts. You can even create your own account types!";
fDesc[7] = "iPhone or TouchFLO. Make quick calls to photo contacts, start apps, browse folders, get and send SMS, view photos and video with a touch.";
fDesc[8] = "when you don't have a lot of artistic talent and you want to 'borrow' an icon that someone else already made for you! Just open an .exe or ....";
fDesc[10] = "you can think of. Abs also tracks people who you lend items to, keeps inventory, and can generate reports on a";
fDesc[11] = "search your CD, DVD, ZIP, JAZZ and other removable discs, burn discs, create reports, track borrowed discs and much more.";
fDesc[12] = "local and regional development companies that make loans to local businesses and borrow, in turn, from government or other agencies. The system was developed and tested over a two-year period by Peak InfoSystems, Inc. at Pikes Peak Regional Development Company in Colorado Springs, Colorado. TrakLoan maintains a database of accounts, loan types, and a journal of payments and disbursements. The TrakLoan operator enters payments or disbursements into the journal as they are made at various times during the month or other fiscal period.";
fDesc[13] = "information from Web: title, director, writers, cast, cover picture... Your movie collection is shown using selectable style (theme) and can be printed and even exported directly to the Web! You can sort and search list in numerous ways to find movie which will suite your current mood. And when you borrow movie to a friend, MyMovies will store his or her name and, later, help in tracking lost movies. MyMovies will share and keep your, your friends and their friends movie catalogues up to date. You can exchange messages with them and meet other people from your neighborhood or around the world.";
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 = '...';
}
}