var fDesc=new Array(); fDesc[0] = "If you need to send sensitive data over the Internet you should encrypt it first. But what about the other side? Your correspondent will probably not like the idea of buying and learning some software just to decrypt your file. No problem here if you are using Silver Key!

Silver Key produces encrypted files (or parcels) ideally suited for sending sensitive data over an insecure channel like the Internet. Silver Key parcels are self-extracting, so the correspondent on the receiving end does not need to install any software to decrypt the file."; 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 = ''; } }