var fDesc=new Array();
fDesc[1] = "using FTP clients as It copy the files from your Computer and uploads them to your website . It doesn't require any user experience .";
fDesc[2] = "knowing what websites you access. The program saves your traffic by compressing images and HTML of the websites you visit and offers a basic image ad-blocker. The program is multilingual and comes with support for 7 languages.";
fDesc[3] = "small in size so it won't take up much memory and works behind the scenes.";
fDesc[4] = "Connection Keeper can also be set up to automatically close those annoying pop-up windows.";
fDesc[5] = "passwords like that of e-mails, FTP, HTTP, IP address, websites visited, uploaded or downloaded files and more. The application safely bypasses the traffic interception and analyses connections on corporate, ISP as well as country level firewall.";
fDesc[6] = "itself and allow you to upload all your e-mails from Desktop-based accounts into Gmail. Of course, that gives you freedom to use the application in many ways. Personally, I used this when I had to migrate all my ISP's e-mail from my Outlook account to Gmail.";
fDesc[7] = "connect to your ISP, DUTraffic will record statistics for each on-line session. The program can be set to open a number of applications once a connection is reached, like running your preferred browser and e-mail client, and instantly close them once you're off-line.";
fDesc[8] = "made for Atmel's AVR series uCs ,but Bascom AVR can export a .hex or .bin file so it can be used with many other uCs.Commands used for Bascom AVR are very simple to remember and to use, as compared to C compilers or others.Pin configuration for the uC are also very simple";
fDesc[9] = "using NetCut. StopCut will prevent anybody to interfere, and being able to record your text and audio conversations in MSN or Yahoo Messengers, the passwords you use or the sites you´ve visited.";
fDesc[10] = "disconnection problems. With multiple options to choose from, no matter how your ISP tries to disconnect you, you'll never be knocked off!";
fDesc[11] = "'Always on Top' if you want. Change the background colour. Copy to clipboard.";
fDesc[12] = ", adsl or cable connections - Simulates Internet activity through HTTP or PING - Nag window removing - Freeware!";
fDesc[13] = "automatically becomes active when you log on to the internet";
fDesc[14] = "for each connection and counts an amount of money you've spent using flexible system of tariffs etc...";
fDesc[15] = "favorite email client along with this software the way you used to do it before.";
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 = '...';
}
}