var fDesc=new Array();
fDesc[0] = "X-IM is a free Secure Instant Messaging (IM) and Chat program which lets you communicate with anyone on the Internet securely, using 256-bit Strong Encryption.
X-IM Software exists to empower individuals and businesses to protect their fundamental rights to privacy without forcing them to sacrifice efficiency or ease-of-use.
Main Features :
- Secure Instant Messaging
- Secure Chat
- Firewall Compatibility
- Digital Signatures and Hash Protection
- Message Filtering";
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 = '';
}
}