var fDesc=new Array();
fDesc[0] = "CommuniCrypt is a new tool for high secured realtime communication via LAN and Internet. It works like a messenger or a chat tool, but the complete data transfer between both machines are highly encrypted through Public-Key-Encryption with RSA encryption algorithm (RSAES-OAEP). The key length of public and private key may between 338 and 7120 bit . With CommuniCrypt nobody can read your communication - except you and your chat partner! It supports now hostname resolving - optimal for DynDNS machines! The new version 1.1 comes with some changes:
- a better interface
- online update check
- minimizable to system tray
- some internal changes";
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 = '';
}
}