var fDesc=new Array();
fDesc[0] = "It is effective and inexpensive software to prevent identity theft. It scans your PC for all traces of passwords, credit card numbers, telephone and address and all such data that may be used to identify you, or to impersonate you. It is a powerful application to help you secure your personal information. It scans the following areas to protect you:
- Search and review results
- Secure found data
- Save in wallet";
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 = '';
}
}