var fDesc=new Array();
fDesc[2] = "need a server in between users. It is small program that resides on the system-tray and pops-up when a message is recived. Available for Windows, Linux and Mac in English and a couple of other languages.";
fDesc[3] = "and even make your very own sudoku that can be shared on the programs online forum.";
fDesc[4] = "Winpopup and 'net send' (Windows components).";
fDesc[5] = "responsibilities, or when you need to relax after a long day at work; it is easy to play, you do not need to learn complicated rules, and is really entertaining.";
fDesc[6] = "your .NET and ASP.NET applications. Access all FTP capabilities through a straightforward, intuitive object model.";
fDesc[8] = "computer according to keywords you have selected or perform websearches faster and easily than before.";
fDesc[9] = "front lines of the fight against phishing, to reel in Online scammers ,So you can protect your personal or financial account.";
fDesc[10] = "international standardized protocol NMEA-0183 for GPS data exchange. It can simulataneously send and recieve data.";
fDesc[11] = "computer without being overly intrusive, and enables you to go back at any time to investigate past alerts.";
fDesc[12] = "Book (WAB). Add filters, Word and e-mail addresses of friends. Add filters. and much more.....";
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 = '...';
}
}