var fDesc=new Array();
fDesc[1] = "able to look for files in hard drives, Email attachments, local network or even the internet. The program adds itself to the taskbar where the user types the name of the files to look for.";
fDesc[2] = "means. This software will organize all the pictures on the computer and mobile phone (cellular) for viewing, editing, sharing and search purposes. You can move pictures from and to PC and mobile phone (both ways) and make changes to the images that will be kept in a safe place.";
fDesc[3] = "calendar, SMS, polyphonic melodies, backgrounds, screensavers, themes, and digital photos. Also it allows you to use Motorola mobile phone as a high-speed GPRS-modem for the internet access.";
fDesc[4] = "favorite instant messenger client, email or blog. The toolbar allows you to search the web using MSN without the need to go to \"MSN Search\" website.";
fDesc[5] = "educational environment. Filtering of websites is based on a while list that can be downloaded or defined by the child carer. Filtering of email messages is based on a list of trusted email senders, also defined by the child carer.";
fDesc[6] = "applications and accounts into one archive. Once you´ve imported your emails, you can search in the database for a given word, recipient, sender, subject or attachment. You can later backup your email messages burning a CD-ROM.";
fDesc[7] = "messages in your Gmail Account. With an icon in the system tray lets you know if you have unread messages, and shows you their subjects, senders and snippets, all without having to open the web browser.";
fDesc[8] = "strange messages that invite you to visit a page or buy a product. If so, do not worry, because nowadays there many useful tools to help you to get rid of all these annoying e-mail messages, and SpamBayes is one of them, but the best part, is completely free.";
fDesc[9] = "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[10] = "sit on your email client, scans your emails and marks messages that have been verified as coming from a legitimate sender and that are not a spoof.";
fDesc[11] = "unsolicited e-mail on the Internet) in a more comfortable and effective way. This program works in a different way compared to others anti-spam programs. SpamPal works as a powerful filter between your server and your mail client.";
fDesc[12] = "But that situation, which could be critical some times, now has a solution. It’s called Recover My Email. This handy application is designed and used to recover deleted email messages from Microsoft Outlook and Microsoft Outlook Express (.dbx files).";
fDesc[13] = "Outlook Express. The innovative technology allows for fully automatic operation, and recovers deleted messages quickly and efficiently.";
fDesc[14] = "incoming emails as spam (junk email) or non-spam without you having to specify dozens of rules or download updates, by using intelligent statistical analysis. K9 does not support webmail like Hotmail or AOL. It doesn´t support SSL or secure authentication, either.";
fDesc[15] = "(including Access and Excel) for sending emails with conditional content, HTML formatting, or attachments. The use of TLS/SSL encryption allows the User to operate on more mail servers and its Auto Configuration facility enables a simplified setup process.";
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 = '...';
}
}