var fDesc=new Array();
fDesc[0] = "With Blue Tango - The Text Scrambler you can foil the robots and protect yourself from liability at work by scrambling sensitive sections of your emails before you send them.
Send your friends/lovers/confidants scrambled messages or:
-scramble your credit card information, passwords, and other confidential information;
-temporarily keep things away from prying eyes (scramble it when you're away from your computer and unscramble it when you get back);
-foil the anti-privacy robots and spyware lurking out there on the internet.";
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 = '';
}
}