var fDesc=new Array();
fDesc[1] = "matchmaking and text and voice chats. Features game news and downloadable demos. When you install GameSpy Arcade 2.05, the program seeks for supported installed games in your computer, in order to allow you to play them online. If it finds nothing, it will later help you to find some.";
fDesc[2] = ", you bet only for fun. You have to obtain a login name and password if you don´t have one. Membership is free, but you must declare you´re an adult.";
fDesc[3] = "play online, you will need to obtain a name and password by registering free in the ICC site. The program offers a link to do that. They will give you a seven days membership. You will need to pay if you want to extend it later.";
fDesc[4] = "Business card, Staff card, Membership card and Interactive CD business card.";
fDesc[5] = "the Internet. You will be sitting at a regular bridge table, playing against opponents that can be from anywhere in the world. You will see your cards and the faces of each one of the other players.";
fDesc[6] = "organizations, sociaties, clubs, camps, interest groups, associations, health clubs..";
fDesc[7] = ", the club's finances, user defined reports and much more. Serves as a tool for the club's officers.";
fDesc[8] = ", administrative committees, small group Bible study groups, and spiritual gifts. Plus a prayer list, church calendar, and staff calendar.";
fDesc[9] = "more. Print labels, reports, and rosters. Many customizable features. Free telephone and online support!";
fDesc[10] = ", sermons, church personnel, music programs, talent survey and more. User defined fields.";
fDesc[11] = "invoicing of club members easy..";
fDesc[12] = "gallery supported by adware for those who dont care about quality and dont want to pay for a legal quality Movie.";
fDesc[13] = "software gives you an easy way to manage, track, and organize data of a small church.";
fDesc[14] = "ideal for customised product labels";
fDesc[15] = "records, track overdue payments, produce various reports within minutes and much more. More info on www.tacomputing.net";
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 = '...';
}
}