var fDesc=new Array();
fDesc[0] = "The Bat! is secure email client software, built to protect your correspondence against third-parties. It protects your information through multiple encryption streams with the options to encrypt your emails on disk and during communication through an SSL/TLS connection. Free of global email providers that keep your messages in the cloud, and free of Web clients, The Bat! ensures your data stays private.
Features:
- PGP, GnuPG and S/MIME support.
- Internal HTML Viewer.
- Safe handling of attached files.
- Selective download.
- Powerful filtering system.
- The Bat!’s own Address Book.
- Handy templates.
- RSS Feed subscriptions .";
function tShowHide(id, show)
{
var s = document.getElementById("desc");
if ((s.innerHTML.length<=212 || show==1) && show!=2)
{
s.innerHTML = fDesc[id];
if (document.getElementById('m1'))
document.getElementById('m1').style.display='none';
if (document.getElementById('m2'))
document.getElementById('m2').style.display='none';
if (document.getElementById('more_txt'))
document.getElementById('more_txt').style.display='inline';
}
else
{
s.innerHTML = '';
}
}