var fDesc=new Array(); fDesc[0] = "The easiest way to send a secure key over an unsecure connection. MAXA Key Exchanger uses a cryptographic protocol (Diffie-Hellman key exchange) that allows two parties that do not know each other to jointly establish a shared, secret key, over an insecure communications channel (like email or instant messaging).

This key can then be used to encrypt/decrypt their communications using a symmetric key cipher, e.g. MAXA Crypt."; 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 = ''; } }