var fDesc=new Array(); fDesc[0] = "GnuPG is a complete and free implementation of the OpenPGP standard as defined by RFC4880 (also known as PGP). The program allows to encrypt and sign your data and communication, features a versatile key management system as well as access modules for all kinds of public key directories. GnuPG is a command line tool with features for easy integration with other applications. A wealth of frontend applications and libraries are available that make use of GnuPG."; 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 = ''; } }