var fDesc=new Array();
fDesc[1] = "public and private channels in the whole world, streaming its content in the Net. You can, of course, watch the TV shows or listen to the radio broadcasts using your regular browser. But it's way much comfortable having all those links into a single application.";
fDesc[2] = "entire word, phrase, sentence, paragraph or document.This incredible application can be used with many applications such as word processors, dictation software or email clients.";
fDesc[3] = "earn money. Each day of work you have to earn a certain amount of money to pass to the next day. You have to serve customers as soon as possible, otherwise they will leave, and you will lose some money.";
fDesc[4] = "dictionary is set up with the examination point of view which is easy to use and an effective tool for a user to prepare for the examinations. This dictionary serves as a user friendly interface. The existing data can be edited and one can add his/her own data in the dictionary.";
fDesc[5] = "bothering and time consuming can be to prepare exams for students. The purpose of SchoolHouse Test is helping you creating tests of a wide variety of types with a great simplicity.";
fDesc[9] = "Control -Wake On LAN (WOL) -Shutdown Tool -WMI Tool -Health monitor -Reporting (Hardware/Software) -Search & modify registies";
fDesc[10] = "soon as someone visits your site and chat with them instantly. It maximizes your site's potential!";
fDesc[12] = "information stored in your computer is fully confidential with VIP Files Protector - mighty encryption and shredding software.";
fDesc[14] = "way to store all your notes without cluttering up your desk with PostIt and sticky notes.";
fDesc[15] = "Full featured editor lets you format documents as well as notes. Active web links and a reminder utility too!";
fDesc[16] = ", support and inventory desktops from a central location.";
fDesc[17] = "computer based task by technical support engineers, system administrators, IT help desk staff, software trainers or anyone who manages software.";
fDesc[18] = ", Championship Euchre Pro offers a fun and exciting gaming experience for casual and hardcore fans alike. Now you can challenge our playful computer champions, engage your friends over a local network, or compete in our free global Internet GameSpy lobby. Play at your desk or on-the-go using GPRS, Bluetooth (r) and other wireless technologies. If you are new to the game, take advantage of the interactive tutorial to show you how to play. Other practice features such as hint, undo, and replay will help build your confidence. If you are a seasoned pro, try to corner one of our eight animated opponents who adapt to your play style and use advanced strategies with a humorous twist. Detailed statistics will help you track your success and optimize your strategy. You are in control - play the most popular variations including Partners, Cutthroat, Bid Euchre, British, and Call for Best your...";
fDesc[19] = ", Championship Cribbage Pro offers a fun and exciting gaming experience for casual and hardcore fans alike. Challenge our playful computer champions, engage your friends over a local network, or compete in our free Internet lobby. Play at your desk or on-the-go using wireless technologies.";
fDesc[20] = "receive news and information. While you talk on the phone, enjoy lunch at your desk or anytime your computer is idle, watch the latest news headlines, weather, stock information and content from your favorite web sites come alive on your screen, including the latest updates from this site.";
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 = '...';
}
}