var fDesc=new Array();
fDesc[1] = "Warner corporation. The last version of AIM Triton has opportunities of IP-telephony, it supports universal Plaxo address book, it can send sms through a computer (under the condition of installing necessary plug-ins) and many other enhancements.";
fDesc[2] = "and will captivate you while you are playing. The game consists in a bunch of words mixed up on the screen that you will have to find to get points.";
fDesc[3] = "from PC to mobile phones all around the world. Instant and uninterrupted connectivity with your buddies allow you to chat with them as easily as it would be with an Instant Messaging Buddy.";
fDesc[4] = "an incredible game, you fall in love with GameSpy Comrade, a revolutionary desktop software designed to make it easier and faster to play games online with your friends.";
fDesc[5] = "Yahoo! Messenger's Invisible Settings and check if some of your contacts are invisible for you or really offline. It can even tell you if your contact is in a Chat Room or if his webcam is online.";
fDesc[6] = ", Winlogon, and Custom Startup. It can also back up your current settings in case you would like to revert back to the original status. It does not require any advanced knowledge of computer settings, and the removal process from start-up can be managed in couple of minutes.";
fDesc[7] = "organized, handy, and visible. We can add manually any bookmark, and select a category and subcategory. It is very easy to open any bookmark in our default browser from the user’s interface.";
fDesc[8] = "Messenger or forum. Create your buddy icon with one mouse click!";
fDesc[9] = "you want to read and press Ctrl+C. Of course, it can also play plain text files.";
fDesc[10] = "of quizzes. The program has a very simple and easy-to-use interface. That’s why it can be easily used by people who don’t have any extra knowledge about computers.";
fDesc[11] = "tiny utility remembers all links that you click from time to time and clicks them automatically. The program has a very simple and easy-to-use interface.";
fDesc[12] = "those important tasks you need to do. You can also ask your Buddy to read to you while you work. Your Buddy can read any plain text file including the wide range of eBooks that are now widely available on the Internet.";
fDesc[13] = "them directly to your AIM and change the buddy icons.";
fDesc[14] = "miss any kind of personal or professional commitment just because you are busy in something else equally important.";
fDesc[15] = "TootSweet Buddy and it allows users to play the game automatically. Users can also interrupt the process in the middle of the game and start playing manually.";
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 = '...';
}
}