var fDesc=new Array();
fDesc[0] = "JitBit Enkodr is the world's easiest "on-the-fly" text encryption software. It works in conjunction with ANY text-editing program: MS Word, MS Outlook or even a web-based email like GoogleMail or Yahoo.
(1) Encrypt some text using a key
(2) Send this text to a friend and tell him the key.
All you have to do to encrypt (or decrypt) some text is: (1) Select the text with your mouse (2) Press Ctrl+Shift+F9 on your keyboard (3) Enter a "key" phrase (a password used to encode/decode the fragment).";
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 = '';
}
}